feat: add portainer

This commit is contained in:
Viren070
2025-04-08 22:44:43 +01:00
parent d2d0621151
commit f987162e6f
3 changed files with 22 additions and 0 deletions
+1
View File
@@ -30,6 +30,7 @@ include:
- plausible/compose.yaml
- plex/compose.yaml
- plex-trakt-sync/compose.yaml
- portainer/compose.yaml
- prowlarr/compose.yaml
- realdebrid-account-monitor/compose.yaml
- recyclarr/compose.yaml
+1
View File
@@ -0,0 +1 @@
PORTAINER_HOSTNAME=
+20
View File
@@ -0,0 +1,20 @@
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
expose:
- 9000
labels:
- "traefik.enable=true"
- "traefik.http.routers.portainer.rule=Host(`${PORTAINER_HOSTNAME?}`)"
- "traefik.http.routers.portainer.entrypoints=websecure"
- "traefik.http.routers.portainer.tls.certresolver=letsencrypt"
- "traefik.http.services.portainer.loadbalancer.server.port=9000"
- "traefik.http.routers.portainer.middlewares=authelia@docker"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${DOCKER_DATA_DIR}/portainer:/data
profiles:
- portainer
- all