You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	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