docker
橙子❦
这个作者很懒,什么都没留下…
展开
-
docker使用shell for循环批量创建容器和批量删除容器脚本
1、批量创建容器脚本[root@localhost ~]# cat docker_add.sh#!/bin/bash#前提在/root/add.txt中输入要创建容器的名称,名称切不相同#例如:#[root@localhost ~]# cat add.txt#test1#test2#test3name=cat /root/add.txtfor num in $namedofor char in numdo/usr/bin/dockerrun−idt−−name=num do原创 2020-10-04 10:52:12 · 1478 阅读 · 0 评论 -
docker 创建自定义网络,固定ip地址
1 查看容器镜像[root@bogon ~]# docker imagesREPOSITORY TAG IMAGE ID CREATED SIZEcentos 7.6.1810 f1cb7c7d58b7 15 months ago 202MB2、创建网络,指定网段创建网络,指定网段[root@lxy ~]# docker ne原创 2020-06-29 14:23:12 · 4002 阅读 · 1 评论 -
Centos7.6安装Docker(最详细版)
CentOS7 docker安装一、概述注意:1、确保自己的linux系统内核版本高于3.10,并且系统是64位,才能体验Docker。2、确定内存必须2个否则报错 [root@localhost ~]# uname -r3.10.0-862.el7.x86_64[root@localhost ~]# cat /etc/redhat-release CentOS Linux rele...原创 2020-04-29 18:02:09 · 7905 阅读 · 1 评论 -
ISO镜像转换成Docker镜像
介绍[root@localhost /]# cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) [root@localhost /]# uname -r3.10.0-862.el7.x86_641、准备阶段首先,在一台虚拟机中安装好需要转换的ISO镜像,本文以CentOS 7.6为例;[root@localhos...原创 2020-04-29 17:38:45 · 3410 阅读 · 0 评论 -
docker命令(最详细版)
1、查看镜像[root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZEnginx stable-perl 9e5f6711d527 3 days ago ...原创 2020-04-29 16:59:58 · 511 阅读 · 0 评论 -
Docker镜像推送(push)到Docker Hub(最详细版)
镜像构建成功后,只要有docker环境就可以使用,但必须将镜像推送到Docker Hub上去。我们之前创建的镜像不符合DockerHub的tag要求,因为 在Docker Hub注册的用户名是boonyadocker而不是boonya,所以需要dockertag进行修改,最后利用docker push命令推送镜像到公共仓库。Docker hub注册用户到官网注册账号:https://h...原创 2020-04-28 18:52:13 · 13537 阅读 · 5 评论