33 lines
700 B
YAML
33 lines
700 B
YAML
version: '3'
|
|
|
|
services:
|
|
jellyfin:
|
|
container_name: jellyfin
|
|
image: lscr.io/linuxserver/jellyfin:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- JELLYFIN_PublishedServerUrl=192.168.1.33
|
|
ports:
|
|
- 8096:8096
|
|
- 8920:8920
|
|
- 7359:7359/udp
|
|
- 1900:1900/udp
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/jellyfin/config:/config
|
|
- ${MEDIA_DIR}:/media
|
|
|
|
jellyseerr:
|
|
container_name: jellyseerr
|
|
image: fallenbagel/jellyseerr:latest
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- TZ=${TZ}
|
|
ports:
|
|
- 5055:5055
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/jellyseerr/config:/app/config
|