Answers for "docker compose restart"

9

docker-compose force rebuild

# Build images before starting containers.
docker-compose up --build
# Recreate containers even if configuration/image hasn't changed.
docker-compose up --force-recreate
Posted by: Guest on September-22-2020
1

docker compose restart

restart: "no"
restart: always
restart: on-failure
restart: unless-stopped
Posted by: Guest on September-25-2021
2

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
0

docker --restart example

# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language