You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
576 B
21 lines
576 B
1 year ago
|
version: "2.1"
|
||
|
services:
|
||
|
jellyfin:
|
||
|
image: ghcr.io/linuxserver/jellyfin
|
||
|
container_name: jellyfin
|
||
|
environment:
|
||
|
- PUID=${PUID}
|
||
|
- PGID=${PUID}
|
||
|
- TZ=${TZ}
|
||
|
volumes:
|
||
|
- ${BACKUPDIR}/jellyfin:/backups:rw
|
||
|
- ${APPSDIR}/jellyfin/config:/config:rw
|
||
|
- ${MEDIADIR}/series:/data/tvshows:rw
|
||
|
- ${MEDIADIR}/movies:/data/libmovies:rw
|
||
|
- ${MEDIADIR}/musics:/data/musics:rw
|
||
|
- ${MEDIADIR}/courses:/data/courses:rw
|
||
|
- ${MEDIADIR}/audiocourses:/data/audiocourses:rw
|
||
|
ports:
|
||
|
- 8096:8096
|
||
|
restart: "unless-stopped"
|