获取镜像
docker pull ubuntu
启动容器
docker run -it ubuntu /bin/bash
停止一个容器
docker stop <容器 ID>
停止的容器可以通过 docker restart 重启:
docker restart <容器 ID>
进入容器
-
docker attach
-
docker exec:推荐大家使用 docker exec 命令,因为此命令会退出容器终端,但不会导致容器的停止。
导出容器
docker export 1e560fca3906 > ubuntu.tar
导入容器快照
cat docker/ubuntu.tar | docker import - test/ubuntu:v1
docker import http://example.com/exampleimage.tgz example/imagerepo
删除容器
docker rm -f 容器ID
查看正在运行的容器
docker ps
查看 WEB 应用程序日志
docker logs -f 容器ID
查看WEB应用程序容器的进程
docker top 容器ID
停止 WEB 应用容器
docker stop wizardly_chandrasekhar
重启WEB应用容器
docker start wizardly_chandrasekhar
移除容器
docker rm wizardly_chandrasekhar
构建镜像
cat Dockerfile
FROM centos:6.7
MAINTAINER Fisher "[email protected]"
RUN /bin/echo 'root:123456' |chpasswd
RUN useradd aa
RUN /bin/echo 'aa:123456' |chpasswd
RUN /bin/echo -e "LANG=\"en_US.UTF-8\"" >/etc/default/local
EXPOSE 22
EXPOSE 80
CMD /usr/sbin/sshd -D
docker build -t aa/centos:6.7 .
设置镜像标签
docker tag 860c279d2fec aa/centos:dev标签:bin,容器,RUN,WEB,常用命令,学习,ubuntu,docker From: https://blog.csdn.net/yan88888888888888888/article/details/143207847