- 如何覆盖dockerfile的entrypoint指令,使用–entrypoint参数
docker run -it --entrypoint sh nginx:latest
- 如何实现运行容器退出就删除容器:使用–rm参数,注意: 如果终端退出,还是需要手动删除的
docker run -it --rm alpine:latest sh
上面两个参数可以搭配使用
docker run -it --entrypoint sh nginx:latest
docker run -it --rm alpine:latest sh
上面两个参数可以搭配使用