11 lines
276 B
YAML
11 lines
276 B
YAML
services:
|
|
jellyfin:
|
|
image: ${IMAGE:-docker.io/jellyfin/jellyfin}:${VERSION:?}
|
|
container_name: ${NAME:-jellyfin}
|
|
ports:
|
|
- ${ENDPOINT:-127.0.0.1:8096}:8096
|
|
volumes:
|
|
- ${CONFIG:?}:/config:Z
|
|
- ${CACHE:?}:/cache:Z
|
|
- ${MEDIA:?}:/media:ro,Z
|