125 lines
2.8 KiB
YAML
Executable file
125 lines
2.8 KiB
YAML
Executable file
|
|
services:
|
|
|
|
jellyfin:
|
|
image: lscr.io/linuxserver/jellyfin
|
|
container_name: jellyfin
|
|
environment:
|
|
- PUID=998
|
|
- PGID=1001
|
|
- TZ=America/Chicago
|
|
volumes:
|
|
- /DockerVol/Jellyfin/config:/config
|
|
- /data/nfs/Baxter:/data:shared
|
|
ports:
|
|
- 8096:8096
|
|
- 8920:8920
|
|
- 7359:7359/udp
|
|
- 1900:1900/udp
|
|
restart: unless-stopped
|
|
networks:
|
|
- netgrimoire
|
|
deploy:
|
|
labels:
|
|
- homepage.group=Jolly Roger
|
|
- homepage.name=Sabnzbd
|
|
- homepage.icon=sabnzbd.png
|
|
- homepage.href=http://sabnzbd.netgrimoire.com
|
|
- homepage.description=Usenet Downloader
|
|
- homepage.widget.type=sabnzbd
|
|
- homepage.widget.url=http://sabnzbd:8080
|
|
- homepage.widget.key=ac2fcd48264c0a113ef33ab593958a52
|
|
- kuma.sab.http.name="Sabnzbd"
|
|
- kuma.sab.http.url=http://sabnzbd:8080
|
|
- caddy=sabnzbd.netgrimoire.com
|
|
- caddy.import=authentik
|
|
- caddy.reverse_proxy="{{upstreams 8080}}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jellyseerr:
|
|
image: fallenbagel/jellyseerr:latest
|
|
container_name: jellyseerr
|
|
hostname: jellyseer
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- PUID=999
|
|
- PGID=1001
|
|
- TZ=America/Chicago
|
|
ports:
|
|
- 5055:5055
|
|
volumes:
|
|
- /DockerVol/JellySeer/config:/app/config
|
|
restart: unless-stopped
|
|
|
|
wizarr:
|
|
container_name: wizarr
|
|
image: ghcr.io/wizarrrr/wizarr:latest
|
|
hostname: wizarr
|
|
environment:
|
|
- PUID=999
|
|
- PGID=1001
|
|
- TZ=America/Chicago
|
|
ports:
|
|
- 5690:5690
|
|
volumes:
|
|
- ./DockerVol/wizarr/database:/data/database
|
|
|
|
jellystat-db:
|
|
image: postgres:15.2
|
|
hostname: postgres
|
|
container_name: postgres
|
|
environment:
|
|
- POSTGRES_DB='jfstat'
|
|
- POSTGRES_USER=jellystat
|
|
- POSTGRES_PASSWORD=jellystat
|
|
- PUID=999
|
|
- PGID=1001
|
|
- TZ=America/Chicago
|
|
volumes:
|
|
- /DockerVol/postgres/postgres-data:/var/lib/postgresql/data # Mounting the volume
|
|
|
|
jellystat:
|
|
image: cyfershepard/jellystat:latest
|
|
hostname: jellystat
|
|
container_name: jellystat
|
|
environment:
|
|
POSTGRES_USER: jellystat
|
|
POSTGRES_PASSWORD: jellystat
|
|
POSTGRES_IP: jellystat-db
|
|
POSTGRES_PORT: 5432
|
|
JWT_SECRET: 'my-secret-jwt-key'
|
|
ports:
|
|
- "3000:3000" #Server Port
|
|
volumes:
|
|
- /DockerVol/jellystat/backup-data:/app/backend/backup-data # Mounting the volume
|
|
|
|
depends_on:
|
|
- jellystat-db
|
|
|
|
|
|
gaps:
|
|
image: housewrecker/gaps:latest
|
|
container_name: gaps
|
|
hostname: gaps
|
|
ports:
|
|
- 8484:8484
|
|
- 32400:32400
|
|
volumes:
|
|
- /DockerVol/gaps/data:/usr/data
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: "true"
|
|
restart: unless-stopped
|
|
|
|
|
|
networks:
|
|
netgrimoire:
|
|
external: true
|