separate configs from compose files

This commit is contained in:
Christoph Califice
2025-12-07 12:30:14 -03:00
parent 295bcba288
commit b0b876869d
1458 changed files with 122 additions and 102596 deletions

View File

@@ -1,42 +1,34 @@
services:
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
ports:
- 32400:32400
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- PLEX_CLAIM=claim-WNcs7miZ5vyG_1PX_VUN
volumes:
- ./plex:/config
- /mnt/servarr/data/media:/media
restart: unless-stopped
# plex:
# image: lscr.io/linuxserver/plex:latest
# container_name: plex
# network_mode: host
# ports:
# - 32400:32400
# environment:
# - PUID=1000
# - PGID=1000
# - VERSION=docker
# - PLEX_CLAIM=claim-WNcs7miZ5vyG_1PX_VUN
# volumes:
# - ./plex:/config
# - /mnt/servarr/data/media:/media
# restart: unless-stopped
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1000:1000
# network_mode: host
ports:
- 8096:8096
volumes:
- ./jellyfin/config:/config
- ./jellyfin/cache:/cache
- /home/ccalifice/docker-data/streaming/jellyfin/config:/config
- /home/ccalifice/docker-data/streaming/jellyfin/cache:/cache
- /mnt/servarr/data/media/movies:/movies
- /mnt/servarr/data/media/tv:/tv
- /mnt/servarr/data/media/music:/music
restart: 'unless-stopped'
networks:
- pangolin
# # Optional - alternative address used for autodiscovery
# environment:
# - JELLYFIN_PublishedServerUrl=http://192.168.1.201:8096
# # Optional - may be necessary for docker healthcheck to pass if running in host network mode
# extra_hosts:
# - 'host.docker.internal:host-gateway'
- streaming
# navidrome:
@@ -59,6 +51,4 @@ services:
networks:
pangolin:
name: pangolin
external: true
streaming: