Docker 练习1 安装容器

一、实验要求

1.安装docker服务,配置镜像加速器

2.下载系统镜像(Ubuntu、 centos)

3.基于下载的镜像创建两个容器 (容器名一个为自己名字全拼,一个为首名字字母)

4.容器的启动、 停止及重启操作

5.查看正在运行的容器和所有容器

6.退出容器的两种方法,分别实现

7.连接到运行的容器

8.查看容器或镜像的内部信息

9.查看所有镜像

二、实验步骤

1. 安装docker服务,配置镜像加速器
bash 复制代码
1.1 安装docker服务
[root@localhost ~]# curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

1.2 配置镜像加速器
[root@localhost ~]# vim /etc/docker/daemon.json
{
  "registry-mirrors":["https://registry.docker-cn.com"]
}
2.下载系统镜像Ubuntu、 CentOS
bash 复制代码
2.1 重载docker启动配置
[root@localhost ~]# systemctl daemon-reload 

2.2 启动 docker服务
[root@localhost ~]# systemctl start docker.service

2.3 将docker设为开机自启
[root@localhost ~]# systemctl enable docker.service


2.4 搜索官方镜像仓库
[root@localhost ~]# docker search nginx


2.5 拉取镜像
[root@localhost ~]# docker pull nginx
[root@localhost ~]# docker pull busybox

2.6 查看当前主机镜像列表
[root@localhost ~]# docker image ls

2.7 导出镜像
[root@localhost ~]# docker image save busybox > docker-busybox.tar.gz
[root@localhost ~]# ls docker-busybox.tar.gz
[root@localhost ~]# docker image save -o /mnt/busybox_nginx.tar.gz busybox:latest nginx:1.14-alpine
[root@localhost ~]# ls /mnt/busybox_nginx.tar.gz

2.8 导入镜像
[root@localhost ~]# docker image load -i docker-busybox.tar.gz
[root@localhost ~]# docker image ls
3.基于下载的镜像创建两个容器 (容器名一个为自己名字全拼,一个为首名字字母)
bash 复制代码
3.1 创建名字全拼容器
[root@localhost ~]# docker run --name zhangyongkun nginx:1.14-alpine

3.2 创建首字母容器
[root@localhost ~]# docker run --name zyk nginx:1.14-alpine

3.3 查看容器
[root@localhost ~]# docker ps
4.容器的启动、 停止及重启操作
bash 复制代码
4.1 容器启动
[root@localhost ~]# docker start zhangyongkun
zhangyongkun

4.2 容器停止
[root@localhost ~]# docker stop zhangyongkun
zhangyongkun

4.3 容器重启
[root@localhost ~]# docker restart zhangyongkun
zhangyongkun
5.查看正在运行的容器和所有容器
bash 复制代码
5.1 查看正在运行的容器
[root@localhost ~]# docker ps
CONTAINER ID   IMAGE     COMMAND                  CREATED         STATUS              PORTS     NAMES
214af431456c   nginx     "/docker-entrypoint...."   3 minutes ago   Up About a minute   80/tcp    zhangyongkun

5.2 查看所有容器
[root@localhost ~]# docker ps -a
CONTAINER ID   IMAGE     COMMAND                  CREATED         STATUS                     PORTS     NAMES
120353d5796f   nginx     "/docker-entrypoint...."   2 minutes ago   Exited (0) 2 minutes ago             zyk
214af431456c   nginx     "/docker-entrypoint...."   4 minutes ago   Up About a minute          80/tcp    zhangyongkun
6.退出容器的两种方法,分别实现
bash 复制代码
6.1 方法一
[root@localhost ~]# exit

6.2 方法二
Ctrl+D
7.连接到运行的容器
bash 复制代码
[root@localhost ~]# docker exec -it zhangyongkun /bin/sh
# ls
bin   dev		   docker-entrypoint.sh  home  lib32  libx32  mnt  proc  run   srv  tmp  var
boot  docker-entrypoint.d  etc			 lib   lib64  media   opt  root  sbin  sys  usr
#exit
8.查看容器或镜像的内部信息
bash 复制代码
[root@localhost ~]# docker image inspect centos
9.查看所有镜像
bash 复制代码
[root@localhost ~]# docker image

Usage:  docker image COMMAND

Manage images

Commands:
  build       Build an image from a Dockerfile
  history     Show the history of an image
  import      Import the contents from a tarball to create a filesystem image
  inspect     Display detailed information on one or more images
  load        Load an image from a tar archive or STDIN
  ls          List images
  prune       Remove unused images
  pull        Download an image from a registry
  push        Upload an image to a registry
  rm          Remove one or more images
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE

Run 'docker image COMMAND --help' for more information on a command.
相关推荐
yaosheng_VALVE11 分钟前
稀硫酸介质中 V 型球阀的材质选择与选型要点-耀圣
运维·spring cloud·自动化·intellij-idea·材质·1024程序员节
sam-12331 分钟前
k8s上部署redis高可用集群
redis·docker·k8s
看山还是山,看水还是。1 小时前
Redis 配置
运维·数据库·redis·安全·缓存·测试覆盖率
扣得君1 小时前
C++20 Coroutine Echo Server
运维·服务器·c++20
keep__go1 小时前
Linux 批量配置互信
linux·运维·服务器·数据库·shell
矛取矛求1 小时前
Linux中给普通账户一次性提权
linux·运维·服务器
Fanstay9851 小时前
在Linux中使用Nginx和Docker进行项目部署
linux·nginx·docker
ggaofeng2 小时前
通过命令学习k8s
云原生·容器·kubernetes
death bell3 小时前
Docker基础概念
运维·docker·容器
ʚɞ4963 小时前
应用程序部署(IIS的相关使用,sql server的相关使用)
运维·服务器