mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
14 lines
298 B
YAML
14 lines
298 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
jellyfin:
|
||
|
image: jellyfin/jellyfin
|
||
|
container_name: jellyfin
|
||
|
volumes:
|
||
|
- ./data/config:/config
|
||
|
- ./data/cache:/cache
|
||
|
- ./data/media:/media
|
||
|
- ./data/media2:/media2:ro
|
||
|
user: 1000:1000
|
||
|
network_mode: host
|
||
|
restart: unless-stopped
|