容器制作成基础镜像方式
# 容器制作成基础镜像方式
# 方式一:
1、docker stop 容器id # 先
2、docker ps -a 查看刚在停止的容器
3、将容器制作成镜像λ docker commit 0382db2f0175 helm-client:0.5.0
sha256:1496d9cd6d53a00be6414dc194426488ffc7c550fbf72aa7e3a95c5ec90d83fd
4、运行一下刚制作的镜像是否成功 docker run -it helm-client:0.5.0 bash
5、成功后,给刚这个容器重新打一个tag: docker tag helm-client:0.5.0 xxx
6、上传到harbor中 docker push xxx
1
2
3
4
5
6
7
2
3
4
5
6
7
编辑 (opens new window)