mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-08 18:04:06 +01:00
11 lines
443 B
YAML
11 lines
443 B
YAML
version: '3.3'
|
|
services:
|
|
jellyfin:
|
|
container_name: jellyfin
|
|
volumes:
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config'
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache'
|
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media'
|
|
network_mode: host
|
|
image: 'jellyfin/jellyfin:latest'
|
|
restart: unless-stopped |