Files
HomeServerServices/portainer/docker-compose.yml
2026-01-01 18:32:31 -06:00

18 lines
375 B
YAML

services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: always
security_opt:
- no-new-privileges:true
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
ports:
- "9443:9443"
- "8000:8000"
volumes:
portainer_data: