Answers for "run script stop docker compose"

4

docker compose run

# One single docker-compose.yml file
docker-compose up --build -d --remove-orphans

# Specify docker-compose.yml file to run
docker-compose -f docker-compose.yml up --build -d --remove-orphans
Posted by: Guest on June-12-2020
1

docker-compose restart one container

It is very simple: Use the command:

docker-compose restart worker
You can set the time to wait for stop before killing the container (in seconds)

docker-compose restart -t 30 worker
Note that this will restart the container but without rebuilding it. If you want to apply your changes and then restart, take a look at the other answers.
Posted by: Guest on March-18-2021

Code answers related to "run script stop docker compose"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language