dockerfiles/portainer/README.md

375 B

portainer

Portainer is an open-source lightweight management UI which allows you to easily manage your Docker host or Swarm cluster.

docker-compose.yml

portainer:
  image: portainer/portainer
  ports:
    - "9000:9000"
  volumes:
    - ./data:/data
    - /var/run/docker.sock:/var/run/docker.sock
  restart: always