1.docker安装

    技术2024-12-24  12

    docker安装

    #安装依赖(docker依赖于系统的一些必要的工具,可以提前安装) yum install -y yum-utils device-mapper-persistent-data lvm2 #添加软件源 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo #安装docke-ce yum list docker-ce --showduplicates | sort -r #查看所有docker-ce版本 yum install -ysyst docker-ce-18.06.3.ce #启动服务 systemctl start/stop docker systemctl enable/disable docker #开机启动 #配置docker加速镜像 /etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com"] } #使配置生效 systemctl daemon-reload systemctl restart docker #常用的几个命令 docker ps 查看当前正在运行的容器 docker ps -a 查看所有容器的状态 docker start/stop id/name 启动/停止某个容器 docker attach id 进入某个容器(使用exit退出后容器也跟着停止运行) docker exec -ti id 启动一个伪终端以交互式的方式进入某个容器(使用exit退出后容器不停止运行) docker images 查看本地镜像 docker rm id/name 删除某个容器 docker rmi id/name 删除某个镜像 docker run --name test -ti ubuntu /bin/bash 复制ubuntu容器并且重命名为test且运行,然后以伪终端交互式方式进入容器,运行bash docker build -t soar/centos:7.1 . 通过当前目录下的Dockerfile创建一个名为soar/centos:7.1的镜像 docker run -d -p 2222:22 --name test soar/centos:7.1 以镜像soar/centos:7.1创建名为test的容器,并以后台模式运行,并做端口映射到宿主机2222端口,P参数重启容器宿主机端口会发生改变

    docker常用命令

    #查看docker版本信息 dokcer version #查看docker信息 docker info #启动docker systemctl start docker #停止docker服务 systemctl stop docker #修改etc/docker/daemon.json里的远程仓库后执行下面使之生效 systemctl daemon-reload systemctl restart docker

    运行一个docker hello-world

    docker searh hello-world docker pull hello-world docker images docker run hello-world
    Processed: 0.013, SQL: 9