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
radarr/compose.yml Normal file
View File

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