1 获取镜像
1.1 命令格式
代码语言:python代码运行次数:0复制docker pull [选项] [Docker Registry 地址[:端口号]/]仓库名[:标签]
1.2 参数说明
- 使用
docker pull --help
可以看到使用方法:
noamanelson@noamanelson-Virtual-Machine:~$ docker pull --help
Usage: docker pull [OPTIONS] NAME[:TAG|@DIGEST]
Download an image from a registry
Aliases:
docker image pull, docker pull
Options:
-a, --all-tags Download all tagged images in the repository
--disable-content-trust Skip image verification (default true)
--platform string Set platform if server is multi-platform capable
-q, --quiet Suppress verbose output
noamanelson@noamanelson-Virtual-Machine:~$
- 镜像仓库地址和仓库名说明:
/ | 说明 |
---|---|
镜像仓库 | 格式: |
仓库名 | 格式: |
- 举例说明:
docker pull ubuntu:18.04
代码语言:python代码运行次数:0复制如上没有给出 Docker 镜像仓库地址,因此将会从 Docker Hub 获取镜像; 镜像名称是ubuntu:18.04 ,将会获取官方镜像 library/ubuntu 仓库中标签为 18.04 的镜像。
noamanelson@noamanelson-Virtual-Machine:~$ docker pull ubuntu:18.04
18.04: Pulling from library/ubuntu
0c5227665c11: Pull complete
Digest: sha256:8aa9c2798215f99544d1ce7439ea9c3a6dfd82de607da1cec3a8a2fae005931b
Status: Downloaded newer image for ubuntu:18.04
docker.io/library/ubuntu:18.04
noamanelson@noamanelson-Virtual-Machine:~$
- 运行镜像,比如启动
bash
并且进行交互式操作:
docker run -it --rm ubuntu:18.04 bash
代码语言:python代码运行次数:0复制noamanelson@noamanelson-Virtual-Machine:~$ docker run -it --rm ubuntu:18.04 bash
root@36e7bfa463f2:/#
root@36e7bfa463f2:/#
root@36e7bfa463f2:/# ls
bin boot dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var
root@36e7bfa463f2:/#
1.3 docker run说明
- 参数说明,可以使用
docker run --help
查看:
noamanelson@noamanelson-Virtual-Machine:~$ docker run --help
Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
Create and run a new container from an image
Aliases:
docker container run, docker run
Options:
--add-host list Add a custom host-to-IP mapping (host:ip)
-a, --attach list Attach to STDIN, STDOUT or STDERR
--blkio-weight uint16 Block IO (relative weight), between 10 and 1000, or 0 to disable (default 0)
--blkio-weight-device list Block IO weight (relative device weight) (default [])
--cap-add list Add Linux capabilities
--cap-drop list Drop Linux capabilities
--cgroup-parent string Optional parent cgroup for the container
--cgroupns string Cgroup namespace to use (host|private)
......
docker run
就是运行容器;- 部分参数:
参数 | 说明 |
---|---|
|
|
| 容器退出后将其删除 |
| 指定镜像做为基础启动容器 |
| 放在镜像名后的是 命令,交互式 |
- 进入容器后,可在
shell
中输入任何命令,比如查看系统版本:
noamanelson@noamanelson-Virtual-Machine:~$ docker run -it --rm ubuntu:18.04 bash
root@63f52d50f22d:/# cat /etc/os-release
NAME="Ubuntu"
VERSION="18.04.6 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.6 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bioni
- 使用
exit
退出容器。
2 列出镜像
2.1 docker image ls
- 列出已经下载的镜像,使用
docker image ls
:
noamanelson@noamanelson-Virtual-Machine:~$ docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu 18.04 3941d3b032a8 2 months ago 63.1MB
hello-world latest feb5d9fea6a5 19 months ago 13.3kB
noamanelson@noamanelson-Virtual-Machine:~$
- 参数说明:
参数 | 说明 |
---|---|
| 仓库名 |
| 标签 |
| 镜像ID |
| 创建时间 |
| 占用空间 |
2.2 镜像空间
- 这里的占用空间和
Docker Hub
上看到的镜像大小不同; - 下载的镜像是是展开后的各层所占空间的总和,
Docker Hub
是压缩后的体积; docker system df
查看镜像、容器、数据卷所占用的空间:
noamanelson@noamanelson-Virtual-Machine:~$ docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 2 1 63.16MB 63.15MB (99%)
Containers 1 0 0B 0B
Local Volumes 0 0 0B 0B
Build Cache 0 0 0B 0B
noamanelson@noamanelson-Virtual-Machine:~$
2.3 虚悬镜像
- 就是没有仓库名,也没有标签,均为
<none>
; -虚悬镜像已经失去了存在的价值,是可以随意删除,删除命令为:docker image prune
2.4 中间层镜像
- 为了加速镜像构建、重复利用资源,Docker 会利用 中间层镜像;
docker image ls
列表中只会显示顶层镜像;docker image ls -a
显示包括中间层镜像在内的所有镜像;
2.5 列出部分镜像
docker image ls
其实就比如linux下的ls后跟一些参数,比如docker image ls ubuntu
;docker image ls
还支持强大的过滤器参数--filter
,或者简写-f
;- 比如查看某个位置之前和之后的镜像,使用
docker image ls -f since=xxx
或者把since换成before
。
3 删除镜像
3.1 docker image rm
- 删除本地镜像,使用
docker image rm
; - 格式为:
docker image rm [选项] <镜像1> [<镜像2> ...]
3.2 可以使用 ID、镜像名、摘要删除镜像
- 可以使用长ID和短ID来删除镜像,只要能区分清楚就可以;
- 比如删除Ubuntu:
noamanelson@noamanelson-Virtual-Machine:~$ docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu 18.04 3941d3b032a8 2 months ago 63.1MB
hello-world latest feb5d9fea6a5 19 months ago 13.3kB
noamanelson@noamanelson-Virtual-Machine:~$ docker image rm 394
Untagged: ubuntu:18.04
Untagged: ubuntu@sha256:8aa9c2798215f99544d1ce7439ea9c3a6dfd82de607da1cec3a8a2fae005931b
Deleted: sha256:3941d3b032a8168d53508410a67baad120a563df67a7959565a30a1cb2114731
Deleted: sha256:b7e0fa7bfe7f9796f1268cca2e65a8bfb1e010277652cee9a9c9d077a83db3c4
noamanelson@noamanelson-Virtual-Machine:~$
3.3 Untagged 和 Deleted
- 从上删除信息可以看到
Untagged
和Deleted
; Untagged
其实就是镜像的所有标签,因为一个镜像可以有多个标签;- 删除所指定的标签后,可能还有别的标签指向了这个镜像,如果是这种情况,那么
Delete
行为就不会发生; - 并非所有的
docker image rm
都会产生删除镜像的行为,有可能仅仅是取消了某个标签 而已; 当该镜像所有的标签都被取消了,该镜像很可能会失去了存在的意义,因此会触发删除行为。
3.4 docker image ls搭配使用
- 需要删除所有仓库名为
ubuntu
的镜像:
docker image rm $(docker image ls -q ubuntu)
代码语言:python代码运行次数:0复制noamanelson@noamanelson-Virtual-Machine:~$ docker image rm $(docker image ls -q ubuntu)
Untagged: ubuntu:18.04
Untagged: ubuntu@sha256:8aa9c2798215f99544d1ce7439ea9c3a6dfd82de607da1cec3a8a2fae005931b
Deleted: sha256:3941d3b032a8168d53508410a67baad120a563df67a7959565a30a1cb2114731
Deleted: sha256:b7e0fa7bfe7f9796f1268cca2e65a8bfb1e010277652cee9a9c9d077a83db3c4
noamanelson@noamanelson-Virtual-Machine:~$