1
0
Fork 0
medicine-config/portainer/docker-compose.yml

27 lines
471 B
YAML

version: '3'
services:
portainer:
restart: "always"
image: portainer/portainer-ce:latest
container_name: portainer
ports:
- "879:9443"
volumes:
- portainer-data:/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
- medicine-network
logging:
driver: "json-file"
options:
max-size: "200k"
max-file: "10"
networks:
medicine-network:
external: true
volumes:
portainer-data: