mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
.. | ||
arm | ||
docker-compose.yml | ||
README.md |
portainer
Portainer is an open-source lightweight management UI which allows you to easily manage your Docker host or Swarm cluster.
docker-compose.yml
version: "3.8"
services:
portainer:
image: portainer/portainer-ce
ports:
- "8000:8000"
- "9000:9000"
volumes:
- ./data:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped