16 lines
370 B
YAML
16 lines
370 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
jellyfin:
|
|
image: lscr.io/linuxserver/jellyfin:latest
|
|
container_name: jellyfin
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- /infra/jellyfin/config:/config
|
|
- /infra/downloads/tvshows:/data/tvshows
|
|
- /infra/downloads/movies:/data/movies
|
|
ports:
|
|
- 8006:8096
|
|
restart: unless-stopped |