mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
14 lines
348 B
YAML
14 lines
348 B
YAML
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
restart: always
|
|
ports:
|
|
- "8000:8000" # Optional für Edge-Agent
|
|
- "9443:9443" # HTTPS-Zugriff auf Portainer (Web-UI)
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- portainer_data:/data
|
|
|
|
volumes:
|
|
portainer_data:
|
|
external: true
|