install docker on centos7 manually

简介: docker, centos7

install docker on centos7 manually

1. download dock * .rpm

download the package whose version is depended on OS version website
docker-ce-18.03.0.ce-1.el7.centos.x86_64

2. install , start, and verify

before install docker, dependencies should be installed: pigz-2.3.3-1.el7.centos.x86_64.rpmcontainer-selinux-2.107-3.el7.noarch.rpm then,
install docker :

sudo rpm -i docker-ce-18.03.0.ce-1.el7.centos.x86_64

start docker :

sudo systemctl start docker

verify :

sudo docker images ls 
...
sudo docker container ls 
...
sudo docker run hello-world
Hello from Docker!
This message shows that your installation appears to be working correctly.
3. ISSUE : warning: container-selinux-2.107-3.el7.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY

rpm uses Public Key Check to make installation more secure.

#use `lskeys` to see the signing keys installed 
$ lskeys 
#install a key with `rpm --import` followed by the key file(local file or a URL) 
$ rpm --import 
#disable GPG signature check for RPM packages
$ sudo rpm --nosignature  ****.rpm

reference :

[1] Thread: PROBLEM WITH "WARNING : NOKEY" WHILE INSTALLING A SOURCE RPM

[2] Rpm, Yum, Dnf “NOKEY” Public Key Check Error and Solution
[3] Install Docker Engine on CentOS

目录
相关文章
|
19天前
|
安全 Linux Shell
docker运行centos提示Operation not permitted
通过上述步骤,可以有效排查和解决在Docker中运行CentOS容器时遇到的"Operation not permitted"错误。这些措施涵盖了从权限配置、安全策略到容器运行参数的各个方面,确保在不同环境和使用场景下都能顺利运行容器。如果你需要进一步优化和管理你的Docker环境
29 3
|
1月前
|
Java jenkins 持续交付
Centos7下docker的jenkins下载并配置jdk与maven
通过上述步骤,您将成功在CentOS 7上的Docker容器中部署了Jenkins,并配置好了JDK与Maven,为持续集成和自动化构建打下了坚实基础。
97 1
|
1月前
|
NoSQL Linux Redis
Docker学习二(Centos):Docker安装并运行redis(成功运行)
这篇文章介绍了在CentOS系统上使用Docker安装并运行Redis数据库的详细步骤,包括拉取Redis镜像、创建挂载目录、下载配置文件、修改配置以及使用Docker命令运行Redis容器,并检查运行状态和使用Navicat连接Redis。
227 3
|
2月前
|
存储 Linux Docker
CentOS 7.6安装Docker实战案例及存储引擎和服务进程简介
关于如何在CentOS 7.6上安装Docker、介绍Docker存储引擎以及服务进程关系的实战案例。
138 3
CentOS 7.6安装Docker实战案例及存储引擎和服务进程简介
|
2月前
|
Linux Shell Python
centos执行pip3 install etcd3报错
centos执行pip3 install etcd3报错
|
3月前
|
存储 关系型数据库 Linux
在CentOS 7上安装和使用Docker的方法
在CentOS 7上安装和使用Docker的方法
489 1
|
3月前
|
Java Linux Docker
CentOS7 Docker 安装,配置国内镜像
CentOS7 Docker 安装,配置国内镜像
804 2
|
3月前
|
Linux 测试技术 Docker
Docker CE for CentOS 安装教程
Docker CE for CentOS 安装教程
133 1
|
4月前
|
存储 Linux 网络安全
Centos安装Docker的详细安装步骤,Docker相关组件:docker-ce-cli、docker-ce和containerd.io的区别
Centos安装Docker的详细安装步骤,Docker相关组件:docker-ce-cli、docker-ce和containerd.io的区别;CentOS7安装DockerCompose;Docker镜像仓库
700 11
|
3月前
|
Linux 应用服务中间件 Shell
在CentOS 7上安装和使用Docker Compose的方法
在CentOS 7上安装和使用Docker Compose的方法
254 0