61 lines
1.5 KiB
YAML
Executable File
61 lines
1.5 KiB
YAML
Executable File
services:
|
|
jellyfin:
|
|
image: lscr.io/linuxserver/jellyfin:latest
|
|
container_name: jellyfin
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
# - JELLYFIN_PublishedServerUrl=http://10.0.0.101 #optional
|
|
volumes:
|
|
- /mnt/flash1/podman/media/config/:/config
|
|
- /mnt/tank/:/data
|
|
ports:
|
|
- 8096:8096
|
|
- 7359:7359/udp #Service Discovery
|
|
- 1901:1900/udp #Client Discovery
|
|
restart: unless-stopped
|
|
|
|
jellyseerr:
|
|
container_name: jellyseerr
|
|
image: docker.io/fallenbagel/jellyseerr:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
volumes:
|
|
- /mnt/flash1/podman/media/config/jellyseerr:/app/config
|
|
ports:
|
|
- 5055:5055
|
|
restart: unless-stopped
|
|
|
|
jellystat-db:
|
|
image: docker.io/postgres:latest
|
|
container_name: jellystat-db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: liph
|
|
POSTGRES_PASSWORD: 1ChageposT
|
|
volumes:
|
|
- ./jellystat/postgres:/var/lib/postgresql/data
|
|
|
|
jellystat:
|
|
image: docker.io/cyfershepard/jellystat:latest
|
|
container_name: jellystat
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: liph
|
|
POSTGRES_PASSWORD: 1ChageposT
|
|
POSTGRES_IP: jellystat-db
|
|
POSTGRES_PORT: 5432
|
|
JWT_SECRET: "/N1k7UPV2K5I47aARWEbD6lFtD8igZeImIpt64Fhf/Q="
|
|
TZ: ${TZ}
|
|
volumes:
|
|
- ./jellystat/backup-data:/app/backend/backup-data
|
|
ports:
|
|
- "3002:3000"
|
|
depends_on:
|
|
- jellystat-db
|
|
|
|
# Want more!? https://github.com/awesome-jellyfin/awesome-jellyfin
|