p:: Docker
- https://github.com/portainer/portainer
- Portainer is a lightweight management UI which allows you to easily manage your different Docker environments (Docker hosts or Swarm clusters).
Deploying Portainer CE in Docker
Portainer Server Deployment
docker volume create portainer_data
portainer_data
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-ce
Go to http://localhost:9000