Docker 基础使用

2018-12-06  本文已影响0人  观星汉

Docker 安装完成后, 正常使用 Docker 需要了解一些常用的操作指令.

leo@ulinux:~$ systemctl status docker

如果 Docker 服务没有启动, 使用 sudo systemctl start docker 启动 Docker 服务.


eo@ulinux:~$ sudo usermod -aG docker ${USER}

leo@ulinux:~$ docker search --filter "is-official=true" --filter "stars=3" hello-world 

--filter 可以进行搜索过滤,

--filter "is-official=true": 只搜索官方镜像.
--filter "stars=3": 评分3颗星以上的镜像.


leo@ulinux:~$ docker pull hello-world

pull 可以带 Tag 下载, docker pull image[:tag], 默认的 tag 为latest, 可以在 hub.docker.com上查看具体的镜像的具体 tag.



leo@ulinux:~$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              4ab4c602aa5e        2 months ago        1.84kB

docker images 命令列出本机所有的 docker 容器镜像
REPOSITORY: 表示镜像的仓库源
TAG: 镜像的标签
IMAGEID: 镜像ID
CREATED: 镜像创建时间
SIZE: 镜像大小


leo@ulinux:~$ docker run hello-world

run指令可以添加非常多的参数,

  • --name: 运行镜像时给这个镜像取名, 方便停止的时候直接对这个名字的镜像进行停用. 比如: --name myNginx 运行nginx镜像时取名为: myNginx.
  • --volume , -v: 挂载一个目录到容器里, 并且覆盖容器里的目录. 格式为 -v host-path:image-path[:ro], ro: 可选, 表示挂载的目录只读.
  • --publish , -p: 端口映射, 主机的端口映射到镜像虚拟机的端口.
  • --detach , -d: 容器运行在守护进程中. 终端输出容器ID结束.
  • --interactive , -i: 容器在前端运行, 和 -d 参数相反, -i 一直等到用户输入.
  • --tty , -t: 挂载标准的输入输出, 通常和 -i 搭配使用.
  • 官方文档 查看更多的参数配置.

leo@ulinux:~$ docker ps

leo@ulinux:~$ docker stop my-nginx

my-nginx: 为 run 镜像的时候使用 --name 参数进行设置的名称, 未设置名称可以使用 ps 执行查看容器ID, 然后 使用 docker stop ContainerID 停用.


leo@ulinux:~$ docker start my-nginx

leo@ulinux:~$ docker rm -v my-nginx

leo@ulinux:~$ docker rmi -f hello-world
上一篇下一篇

猜你喜欢

热点阅读