Files
docker/portainer/docker-compose.yml
2021-08-29 18:03:53 +00:00

12 lines
277 B
YAML

version: "2"
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