Install

文档

Linux

源码安装

YUM安装

参考:

## 卸载旧版本
yum remove docker \
           docker-client \
           docker-client-latest \
           docker-common \
           docker-latest \
           docker-latest-logrotate \
           docker-logrotate \
           docker-engine

# Install the yum-utils package (which provides the yum-config-manager utility) and set up the stable repository.
yum install -y yum-utils
yum-config-manager \
    --add-repo \
    https://download.docker.com/linux/centos/docker-ce.repo 
          
# Install the latest version of Docker Engine and containerd
yum -y install docker-ce docker-ce-cli containerd.io

# 启动和测试
systemctl start docker
docker run hello-world
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

Portainer安装

参考:

https://www.portainer.io/installation (opens new window)

docker search portainer
docker pull portainer/portainer
docker volume create portainer_data

docker run -d -p 8000:8000 -p 9000:9000 \
  --name=portainer \
  --restart=always \
  -v /var/run/docker.sock:/var/run/docker.sock \ 
  -v portainer_data:/data \
  portainer/portainer-ce
1
2
3
4
5
6
7
8
9
10
总字数: 144 字  上次更新: 2023-03-14 00:25:11