1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| version: '3.5' services: jellyfin: image: nyanmisaka/jellyfin:latest container_name: jellyfin user: <uid:gid> network_mode: 'host' volumes: - /path/to/config:/config - /path/to/cache:/cache - /path/to/media:/media - /path/to/media2:/media2:ro restart: 'unless-stopped' environment: - JELLYFIN_PublishedServerUrl=http://example.com extra_hosts: - "host.docker.internal:host-gateway"
|