mv docker-ce.repo /etc/yum.repos.d
yum install -y docker-ce
systemctl start docker && systemctl enable docker && systemctl status docker
安装成功后 就拉取镜像
安装Docker之后,运行以下命令以获取最新的Portainer映像。·
[root@localhost ~]# docker search portainer
拉取镜像
[root@localhost ~]# docker pull portainer/portainer
Using default tag: latest
latest: Pulling from portainer/portainer
d1e017099d17: Pull complete
292b789be2e4: Pull complete
Digest: sha256:63eb47d4b408c3f39e942368bcbf7e157a2b6e5dda94ffd403a14199e1137133
Status: Downloaded newer image for portainer/portainer:latest
docker.io/portainer/portainer:latest
查看镜像
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
portainer/portainer latest d1219c88aa21 2 weeks
启动
[root@localhost ~]# docker run -d -p 9000:9000 --restart=always -v /var/run/docker.sock:/var/run/docker.sock --name prtainer-test portainer/portainer
该语句用宿主机9000端口关联容器中的9000端口,并给容器起名为portainer-test。执行完该命令之后,使用该机器IP:PORT即可访问Portainer
第一次要创建密码 密码必须大于8个字符!!!单机版这里选择local即可,选择完毕,点击Connect即可连接到本地docker
注意:该页面上有提示需要挂载本地 /var/run/docker.socker与容器内的/var/run/docker.socker连接。因此,在启动时必须指定该挂载文件。
接下来使用 创建容器 例如 mysql单,击左侧的“App Templates”按钮。这将显示一些现成的可用模板,例如Docker映像注册表,Nginx,Httpd,MySQl,WordPress等。
选择要部署的容器,只需单击相应的模板。
这里让我们启动MySQL容器。为此,请单击MySQL模板。输入容器名称,选择网络类型(例如新娘模式)。单击“Show advanced options”并设置端口号。
点击“Deploy the container”,过程会有点长,耐心等待。