Portainer 搭建 - Docker Swarm GUI Client(备忘)

一直直接远程终端操作Docker Swarm。今见网友使用Portainer管理客户端,甚是好用

下面是搭建过程:

  1. 创建 docker secret
htpasswd -nb -B admin 123456 | cut -d ":" -f 2
echo -n '$2y$05$2pB5EZoxoQ6rfiULGeO8YO3mSwCXgYDVhjd6GLHZ7fDn2ur.6ZN0.' | docker secret create portainer-pass -
  1. 安装Portainer
docker service create \
    --name portainer \
    --publish 8050:9000 \
    --secret portainer-pass \
    --detach=false \
    --replicas=1 \
    --constraint 'node.role == manager' \
    --mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock \
    portainer/portainer \
    -H unix:///var/run/docker.sock
  1. 设置防火墙
# portainer (a docker gui client)
/sbin/iptables -A INPUT -p tcp -m tcp --dport 8050 -j ACCEPT

(友情提示,所有归属Docker Swarm管理的机子,都要设置防火墙)

你可能感兴趣的:(portainer,docker)