docker's Portainer and Dive

Portainer

  Portainer Docker is a graphical management tool that provides a status display panel, application templates for rapid deployment, container mirrored the basic operation of the network data volumes (including uploading and downloading images, create a container and other operations), event log shows, containers console operator, Swarm cluster and centralized management and operation services, user login management and control functions

Mirror Pull:

docker pull portainer/portainer

Running instance:

docker run -p 9000:9000 --name prtainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -d portainer/portainer

Dive

dive is a handy tool for observing the layers of information containers, as well as integrated container build command, to help us in building a container 
query change information Mirror mirror layers simultaneously,

Mirror Pull:

docker pull quay.io/wagoodman/dive:latest

Run and view the image container

docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock quay.io/wagoodman/dive:latest redis:latest 

#redis:latest 是image 可以是imageid

 

Guess you like

Origin www.cnblogs.com/majiang/p/11417684.html