August 2017
Intermediate to advanced
332 pages
9h 16m
English
When we're done with the stack, we can remove everything using the convenient docker stack rm command:
$ docker stack rm appRemoving service app_calculatorRemoving service app_redisRemoving network app_default
Using Docker Stack allows running the Docker Compose specification on the Docker Swarm cluster. Note that we used the exact docker-compose.yml format, which is a great benefit, because there is no need to specify anything extra for the Swarm.
The merger of both technologies gives us the real power of deploying applications on Docker because we don't need to think about individual machines. All we need to specify is how our (micro) services are dependent on each other, express it in the docker-compose.yml format, and ...
Read now
Unlock full access