mirror of
https://github.com/MSWS/Homelab.git
synced 2025-12-05 23:00:24 -08:00
Add jellyfin
This commit is contained in:
23
jellyfin/docker-compose.yml
Normal file
23
jellyfin/docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: '3.5'
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
networks:
|
||||
- monolith_default
|
||||
volumes:
|
||||
- /home/iboaz/jellyfin/config:/config
|
||||
- /home/iboaz/jellyfin/cache:/cache
|
||||
- type: bind
|
||||
source: /home/iboaz/jellyfin/media
|
||||
target: /media
|
||||
restart: 'unless-stopped'
|
||||
# Optional - alternative address used for autodiscovery
|
||||
environment:
|
||||
- JELLYFIN_PublishedServerUrl=https://watch.msws.xyz
|
||||
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
||||
extra_hosts:
|
||||
- 'host.docker.internal:host-gateway'
|
||||
networks:
|
||||
monolith_default:
|
||||
external: true
|
||||
Reference in New Issue
Block a user