Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我运行sudo docker start redis,docker 启动。但如果我运行sudo circusd --daemon circus.ini,它不会启动。
sudo docker start redis
sudo circusd --daemon circus.ini
马戏团.ini
[watcher:redis] cmd = docker start redis
该docker start命令启动一个容器,然后退出,而像 Circus 这样的进程主管希望您的进程在运行期间一直停留在前台。如果要添加--attach参数,您可能会得到您想要的行为:
docker start
--attach
cmd = docker start --attach redis
这将导致客户端附加到 redis 容器而不是立即退出。