Portainer is a lightweight management UI which allows you to easily manage your different Docker environments (Docker hosts). For more detail, please refer to Portainer.
- Run the docker commands to setup the Portainer.
- If you haven't already, install Docker
docker volume create portainer_data
docker run -d -p 8000:8000 -p 9400:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
-
Access in browser:
http://<host ip>:9400
, login with useradmin
and create an initial password. -
Choose
Local Manage the local Docker environment
, and clickConnect
button, and then it will show the dashboard.