mirror of
https://github.com/GHOSCHT/franz.git
synced 2024-11-10 04:01:59 +01:00
24 lines
421 B
YAML
24 lines
421 B
YAML
|
version: "3.5"
|
||
|
services:
|
||
|
jellyfin:
|
||
|
image: jellyfin/jellyfin
|
||
|
container_name: jellyfin
|
||
|
ports:
|
||
|
- "80:80"
|
||
|
user: uid:gid
|
||
|
network_mode: "host"
|
||
|
volumes:
|
||
|
- jellyfin_data:/config
|
||
|
- jellyfin_cache:/cache
|
||
|
- /mnt:/media
|
||
|
restart: "unless-stopped"
|
||
|
|
||
|
|
||
|
volumes:
|
||
|
jellyfin_data:
|
||
|
name: jellyfin_data
|
||
|
external: true
|
||
|
jellyfin_cache:
|
||
|
name: jellyfin_cache
|
||
|
external: true
|