Files
docker/portainer/docker-compose.yml
2024-06-15 15:34:53 +02:00

12 lines
265 B
YAML

services:
portainer:
container_name: portainer
image: portainer/portainer-ce:latest
ports:
- "8000:8000"
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /opt/portainer:/data
restart: unless-stopped