📜  docker-compose 重新启动一个容器 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:46.358000             🧑  作者: Mango

代码示例1
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.