Search code examples
dockerdocker-composedocker-swarmdocker-stack

How to change the service name generated by Docker stack in docker-compose


When deploying a stack of this compose file using:

docker stack deploy -c docker-compose.yml myapp

service-name:
    image: service-image
    namelike-property: my-custom-service-name // here I would like to know the property

The generated service name will be myapp_service-name

I would want it to be named and referenced by my-custom-service-name


Solution

  • For communication between services you can use the serviceName as defined in the compose file (in your case your service name is service-name) if both services communicating are in the same network.

    When you do docker service ls the stackname will be shown before every service. That's done because its possible to have two services with the same name which are not in a shared network. You can't change that and it wouldn't make sense to do that because that name is not important and is actually just an ID. You can however change the name of your stack to get ${StackNameILike}:${ServiceNameILike}