franz/media/docker-compose.yml
2022-08-27 11:31:42 +02:00

23 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