2-1docker graphical management interface

1 Portainer

Shipyard :( stop maintenance) 
https://github.com/shipyard/shipyard

https://www.portainer.io/installation/ 
command to install: 
Docker portainer_data the Create Volume
docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer Swarm集群部署: docker volume create portainer_data docker service create \ --name portainer \ --publish 9000:9000 \ --replicas=1 \ --constraint 'node.role == manager' \ --mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock \ --mount type=volume,src=portainer_data,dst=/data \ portainer/portainer \ -H unix:///var/run/docker.sock Docker Compose 部署: version: '2' services: portainer: image: portainer/portainer command: -H unix:///var/run/docker.sock volumes: - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data volumes: portainer_data:

1-1, I direct command to install the  

Access ip: 9000

 

 

 

 

 

Guess you like

Origin www.cnblogs.com/zhaojingyu/p/11627436.html