Add my homelab setup, converted to docker compose files

This commit is contained in:
2024-05-28 16:55:33 -03:00
commit eecd123c53
17 changed files with 314 additions and 0 deletions

17
jellyfin/docker-compose.yml Executable file
View 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