Here an example of a docker-compose.yml :
# docker-compose.yml
version: '3'
services:
web:
image: ghost:latest
ports:
- 0:2368
environment:
url: http://ghost.localhost:30001
I would like to get service random port and set inside url
env variable like this:
url: "http://ghost.localhost:{{.Service.Port}}"
The final goal it's to deploy multiple stacks without manually set port.
docker stack deploy --compose-file=docker-compose.yml ghost1
docker stack deploy --compose-file=docker-compose.yml ghost2
docker stack deploy --compose-file=docker-compose.yml ghost3
It's possible ?
Yes, you can select a port range (I would recommend using a higher range, like 9000-9100), but keep in mind that a process is being launched for every open port: Why does Docker run so many processes to map ports though to my application? So the performance is likely going to be less than ideal.
You might want to look into using docker "host networking" or some other non-default networking setup.