refactor: update service task loops and Docker network names for consistency; adjust volume paths for Jellyfin service
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 26s
Nix Format Check / check-format (push) Failing after 1m26s
Python Lint Check / check-python (push) Failing after 21s

This commit is contained in:
2025-07-16 01:44:13 +00:00
parent 1219c54bf4
commit f38c25df9f
6 changed files with 44 additions and 24 deletions

View File

@@ -9,9 +9,9 @@ services:
- JELLYFIN_PublishedServerUrl=https://jellyfin.mvl.sh
volumes:
- {{ jellyfin_data_dir }}/jellyfin-config:/config
- {{ '/mnt/movies' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/movies' }}:/movies
- {{ '/mnt/tv_shows' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/tvshows' }}:/tvshows
- {{ '/mnt/music' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/music' }}:/music
- {{ '/mnt/data/movies' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/movies' }}:/movies
- {{ '/mnt/data/tvshows' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/tvshows' }}:/tvshows
- {{ '/mnt/data/music' if inventory_hostname == 'mennos-server' else '/mnt/object_storage/music' }}:/music
ports:
- 8096:8096
- 8920:8920