Files
selfhosting/portainer/docker-compose.yml
T

18 lines
317 B
YAML
Raw Normal View History

2020-06-27 14:55:16 +02:00
version: '3'
services:
portainer:
container_name: portainer
image: portainer/portainer
command: -H unix:///var/run/docker.sock
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
networks:
- srv
restart: unless-stopped
volumes:
portainer_data: