added all the dotfiles
This commit is contained in:
3
podman/media/.env
Executable file
3
podman/media/.env
Executable file
@@ -0,0 +1,3 @@
|
||||
PUID=1000
|
||||
PGID=33
|
||||
TZ=Berlin/Europe
|
||||
60
podman/media/docker-compose.yml
Executable file
60
podman/media/docker-compose.yml
Executable file
@@ -0,0 +1,60 @@
|
||||
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
|
||||
Reference in New Issue
Block a user