Featured image of post Create a Never Stop Container.md

Create a Never Stop Container.md

创建一个不停止的 docker container

有时候我们需要启动一个不停止的容器,来调试我们的应用,或者使用 devcontainer。

如果我们想在 Dockerfile 中完成这个事情,我们可以添加这个

1
2
3
4
5
...

# 其他内容

ENTRYPOINT ["tail", "-f", "/dev/null"]

如果是 docker-compose.yml,我们可以这样做

1
2
3
services:
  your-app:
    entrypoint: ["tail", "-f", "/dev/null"]

如此一来,这个容器就不会停止了。

comments powered by Disqus
使用 Hugo 构建
主题 StackJimmy 设计