Initial Commit

Adding docker compose stacks
This commit is contained in:
2024-10-01 21:51:58 +00:00
commit 36ca607c74
12 changed files with 376 additions and 0 deletions

25
whisparr/compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
whisparr:
image: ghcr.io/thespad/whisparr:latest
container_name: whisparr
environment:
- PUID=1029
- PGID=1000
- TZ=Etc/UTC
volumes:
- /home/fejy/docker/whisparr:/config
- /mnt/LUXURIA/Private:/Private
ports:
- 6969:6969
restart: unless-stopped
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.whisparr.rule=Host(`whisparr.nearfuture`)"
- "traefik.http.routers.whisparr.entrypoints=web"
networks:
proxy:
external: true