This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
Auto-Homelab/portainer/docker-compose.yml
2024-05-03 23:38:42 +00:00

15 lines
398 B
YAML

services:
portainer:
image: portainer/portainer-ce@sha256:3230606275b0a2a109afd59c881e5b187bed6162ea8f1783f77b077fe37f42d7
container_name: portainer
command: -H unix:///var/run/docker.sock
ports:
- "9000:9000"
- "9443:9443"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "portainer_data:/data"
restart: always
volumes:
portainer_data: