docker Note 10: Docker lightweight visualization tool Portainer

1. What is

Portainer is a lightweight application that provides a graphical interface to easily manage Docker environments, including stand-alone environments and cluster environments.

2.Installation

 https://docs.portainer.io/v/ce-2.9/start/install/server/docker/linux

step 

docker command installation

 
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

 You need to create an admin when logging in for the first time. Access address: xxx.xxx.xxx.xxx:9000

Username, use the default admin directly

Remember the 8-digit password, write whatever you want

Log in for the first time after setting the admin user and password 

 

 Local docker details are displayed after selecting the local tab.

 

 Can you remember the corresponding command for the graphical display in the previous step?

 Log in and demonstrate common operation cases

Guess you like

Origin blog.csdn.net/oDianZi1234567/article/details/132657963