15 lines
321 B
YAML
15 lines
321 B
YAML
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin
|
|
container_name: jellyfin
|
|
ports:
|
|
- ${SVC_PORT_1}:8096/tcp
|
|
volumes:
|
|
- ${CONFIG_PATH}:/config
|
|
- ${CACHE_PATH}:/cache
|
|
- type: bind
|
|
source: ${MEDIA_PATH}
|
|
target: /media
|
|
read_only: true
|
|
restart: 'unless-stopped'
|