centos7安装部署docker容器

系统:centos7,检测系统内核命令:uname -a

Linux localhost.localdomain 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

安装docker

yum install docker

加载守护进程

systemctl daemon-reload

启动docker命令

systemctl start docker

设为开机自启动

systemctl enable docker

查看docker状态

systemctl status docker

查看docker版本

docker version

验证docker是否安装成功,从仓库拉去一个helloworld并运行

docker pull hello-world

Using default tag: latest
latest: Pulling from library/hello-world
Digest: sha256:31b9c7d48790f0d8c50ab433d9c3b7e17666d6993084c002c2ff1ca09b96391d
Status: Image is up to date for hello-world:latest
docker.io/library/hello-world:latest
如果错误则提示
/usr/bin/docker-current: Error response from daemon: shim error: docker-runc not installed on system.

解决办法:创建一个软链接

cd /usr/libexec/docker/
ln -s docker-runc-current /usr/bin/docker-runc
ln -s /usr/libexec/docker/docker-runc-current /usr/bin/docker-runc

注:如果低内核版本系统下载了docker的最新版本,可能会不兼容,会报如下错误

Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service"

解决办法:先卸载docker

yum remove docker-*

更新linux系统内核版本

yum update

重新启动系统,然后安装docker

# 安装
yum install dacker
# 启动
systemctl start docker

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参数重启容器宿主机端口会发生改变。

你可能感兴趣的:(centos7安装部署docker容器)