docker

docker

# 查看支持的版本,并安装
apt-cache madison docker-ce
# 安装docker
apt-get install docker-ce -y
# 可以指定版本安装docker
apt-get install docker-ce= -y

# 查看docker版本
docker version

# docker服务命令
# 启动停止命令
systemctl [参数] docker
# 参数详解
start   开启服务
stop    关闭
restart 重启
status  状态

# 基本目录
/etc/docker      docker的认证目录
/var/lib/docker  docker的应用目录
# 1. 搜索hello-world镜像
docker search hello-world

# 2. 下载hello-world镜像
docker pull hello-world
docker image pull hello-world

# 3. 查看所有镜像
dokcer images
dokcer images ls

# 4. 查看hello-world镜像历史
docker history hello-world

# 5. 将hello-world:latest镜像,备份为hello-world:v2.0镜像
docker tag hehello-world:latest hello-world:v2.0

# 6. 删除hello-world:v:2.0 镜像
docker rmi hello-world:2.0

# 7. 清除未被使用的镜像
docker image prune

# 8. 导出hello-world:latest镜像
docker save -o hello-world:latest.tar hello-world:latest

# 9. 导入hello-world镜像
docker load -i hello-world \:latest.tar

# 10. 查看所有容器
docker ps
docker ps -a

# 11. 查看所有的容器编号
docker ps -q
docker ps -aq

# 12. 守护进行启动NGINX1容器
docker run -d --name nginx1 nginx:latest

# 13. 启动NGINX1容器
docker start nginx1

# 14. 停止NGINX1容器
docker stop nginx1
docker container stop nginx1

# 15. 删除NGINX1容器
docker rm nginx1

# 16. 批量删除正在运行的NGINX容器
docker rm $(docker ps -a) -f

# 17. 创建NGINX容器并进入
docker run -it --name nginx nginx:latest /bin/bash

# 18. 重新进入NGINX容器
docker exec -it nginx /bin/bash

# 19. 通过NGINX容器创建NGINX:v1.0镜像
docker commit -m '信息' -a '作者' nginx nginx:v.1.0

# 20. 查看NGINX容器全部信息
docker image inspect nginx:v.1.0
docker container inspect nginx

私有仓库

  1. 下载镜像registry

    • docker pull registry
  2. 配置私有仓库(/etc/docker/daemon.json)

  • {"registry-mirrors": ["https://a83970g6.mirror.aliyuncs.com"],
    "insecure-registries":["47.16.197.178:5000"]}
    
  1. 重启docker
  • systemctl restart docker
  1. 创建register容器(关联私有仓库配置)
  • docker run -d -p 5000:5000 --name registry:latest
  1. 先备份镜像的名字
  • docker tag ubuntu:latest 47.16.197.178:5000/my_ubuntu
  1. 推送镜像到私有仓库中

    • docker push 47.16.197.178:5000/my_ubuntu
  2. 拉取私有仓库镜像

    • docker pull 47.16.197.178:5000/my_ubuntu

数据卷

  • 数据卷的作用
    • 可以将宿主机中的数据和容器中的数据进行共享
  • 创建过程
    • 先在宿主机创建test文件夹
    • 创建容器和桌面的test文件夹进行映射docker run -it --name my_ubuntu -v ~/Desktop/test:test ubuntu:latest /bin/bash

数据卷volumes

  • 创建数据卷
    • docker volume create xxx
  • 查看数据卷
    • docker volume ls
  • 删除数据卷
    • docker volume rm xxx
  • 数据共享操作
    • 创建容器my_ubuntu2/home进行数据共享
    • docker run -it --name my_ubuntu2 -v meiduo:/home ubuntu:latest /bin/bash

数据卷容器的使用

可以通过数据卷容器,创建新的容器,并将多个容器绑定在一起

操作流程

  • 基于my_ubuntu2数据卷容器创建多个容器
    • docker run -itd --name my_ubuntu3 --volumes-from my_ubuntu2 ubuntu:latest
  • 数据测试
    • 分别进入到对应的容器中,进行数据测试即可

端口映射使用

创建nginx容器的时候,分配ip和端口

操作流程

  1. 创建nginx1容器,指定随机端口,默认的ip地址是0.0.0.0
    • docker run -itd --name nginx1 -P nginx:latest
  2. 创建nginx2容器,指定端口6001,默认的地址是0.0.0.0
    • docker run -itd --name nginx2 -p 6001:80 nginx:latest
  3. 创建nginx3容器,指定ip 47.16.197.178,指定端口6002
    • docker run -itd --name nginx3 -p 47.16.197.178:6002:80 nginx:latest

网络模式说明

  1. 创建nginx4容器,指定host网络模式
    • docker run -itd --name=nginx4 --network=host nginx:latest
    • host:创建的容器,与宿主机共享同一个网卡
  2. 创建nginx5容器,指定bridge网络模式
    • docker run -itd --name=nginx5 --network=bridge nginx:latest
    • bridge:桥接模式,只要使用桥接模式创建的容器,网段一样(类似于:47.16.1.1 47.16.1.2)

network的使用

可以使用系统中的network管理网络模式

操作流程

  1. 查看系统中的网络模式
    • docker network ls
  2. 创建网络模式
    • docker network create --driver bridge bridge_test
  3. 通过网络模式,断掉其中某个容器的网络
    • docker network disconnect bridge nginx5
  4. 通过网络模式,重新连接其中某个容器的网络
    • docker network connect bridge nginx5
  5. 删除网络模式
    • docker network rm bridge_test

你可能感兴趣的:(docker)