10 docker 如何进入已经退出的容器container: You cannot attach to a stopped container, start it first

docker attach d6c45e8cc5f0

然后我获取了以下信息:

2014/10/01 22:33:34 You cannot attach to a stopped container, start it first
请先 登录 后评论

1 个回答

omicsgene - 生物信息
擅长:重测序,遗传进化,转录组,GWAS

启动已停止的现有容器

docker start <container-name/ID>

停止正在运行的容器

docker stop <container-name/ID>

然后登录到容器的交互式shell。

docker exec -it <container-name/ID> bash
请先 登录 后评论