Add my homelab setup, converted to docker compose files
This commit is contained in:
17
jellyfin/docker-compose.yml
Executable file
17
jellyfin/docker-compose.yml
Executable file
@ -0,0 +1,17 @@
|
||||
version: '3'
|
||||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin:latest
|
||||
network_mode: 'host'
|
||||
restart: 'unless-stopped'
|
||||
environment:
|
||||
- JELLYFIN_CACHE_DIR=/var/cache/jellyfin
|
||||
- JELLYFIN_CONFIG_DIR=/etc/jellyfin
|
||||
- JELLYFIN_DATA_DIR=/var/lib/jellyfin
|
||||
- JELLYFIN_LOG_DIR=/var/log/jellyfin
|
||||
volumes:
|
||||
- /docker/appdata/jellyfin/etc:/etc/jellyfin
|
||||
- /docker/appdata/jellyfin/cache:/var/cache/jellyfin
|
||||
- /docker/appdata/jellyfin/lib:/var/lib/jellyfin
|
||||
- /docker/appdata/jellyfin/log:/var/log/jellyfin
|
||||
- /home/isaac/Media:/media
|
Reference in New Issue
Block a user