Top "Docker-stack" questions

A Docker stack is a set of related services which share volumes, networks and other dependencies, and can be orchestrated and scaled together.

Getting invalid mount config for type "bind": bind source path does not exist in docker

I am trying to deploy following docker-compose into docker swarm cluster. version: '3.2' services: jenkins: image: jenkins/jenkins:lts …

docker docker-compose docker-swarm docker-stack
Where to put the php artisan migrate command

Trying to deploy the laravel application on docker stack .What I am confused or not able to figure out is …

php laravel docker docker-stack
How to stop a deployed docker stack?

I just completed the beginners Docker tutorials and would like to know how to clean up. I deployed a stack …

docker docker-stack
docker stack deploy results in "No such image error"

I am using docker swarm and would like to deploy a service with docker-compose. My service uses a custom image …

docker docker-compose docker-swarm docker-stack
How can I update the latest image that my docker service/stack uses?

In the .yml definition, I'm always pulling the latest image of my service. When I push a new image to …

docker docker-swarm docker-stack portainer
Docker-compose.yml file that builds a base image, then children based on it?

For clarification, when I say base image, I mean the parent image that has all the common configurations, so that …

docker docker-compose dockerfile docker-stack
How to update docker stack without restarting all services

I have a swarm cluster wherein different technology dockers are deployed. (Zookeeper, Kafka, Elastic, Storm and custom web application) Web …

docker docker-swarm docker-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: …

docker docker-compose docker-swarm docker-stack
How to dynamically change the docker-compose image field

I have a docker-compose.yml something like bellow: networks: smstake: ipam: config: - subnet: 10.0.10.0/24 services: app: image: smstake:latest ports: …

docker jenkins docker-compose docker-swarm docker-stack
Docker: How to control/define default gateway settings

Can anyone shed some light on what is what with the Docker Compose YML file? All I want to do …

docker docker-compose docker-swarm docker-stack