Author SHA1 Message Date
tobbbs e9ece413b8 Update compose.yaml 2026-07-21 11:10:29 +02:00
tobbbs 6456d78b83 Update compose.yaml 2026-07-21 09:09:26 +02:00
tobbbs 3b4ab67927 Update compose.yaml 2026-07-21 09:02:18 +02:00
tobbbs c0ec9684ec Delete .env 2026-07-21 08:46:08 +02:00
tobbbs b8f88ea29a Update .env 2026-07-21 08:38:38 +02:00
tobbbs e2e69a2d9b Update compose.yaml 2026-07-21 08:35:29 +02:00
tobbbs 3b7582f4f5 Update compose.yaml 2026-07-21 08:35:09 +02:00
tobbbs c21b0dc575 Add .env 2026-07-21 08:34:26 +02:00
tobbbs 0f6d59e8d9 Update compose.yaml 2026-07-21 08:32:17 +02:00
tobbbs e07471cb98 Update compose.yaml 2026-07-21 08:29:45 +02:00
tobbbs ae4a59a1cc Update compose.yaml 2026-07-21 08:28:03 +02:00
tobbbs a9f22ba516 Update compose.yaml 2026-06-04 02:31:40 +02:00
tobbbs e7ac6ebd5b Update compose.yaml 2026-06-02 10:23:49 +02:00
tobbbs cb7ba01586 Update compose.yaml 2026-06-02 10:20:03 +02:00
tobbbs 9796d8648c Update compose.yaml 2026-06-02 10:18:55 +02:00
tobbbs de5af376db Update compose.yaml 2026-06-02 10:14:43 +02:00
tobbbs 1d7b6f4d49 Add compose.yaml 2026-05-26 16:32:24 +02:00
2 changed files with 51 additions and 209 deletions
-99
View File
@@ -1,99 +0,0 @@
# Global Settings
## Do not mark any shows/movies as played and instead just output to log if they would of been marked.
DRYRUN= "False"
## Debugging level, "info" is default, "debug" is more verbose
DEBUG_LEVEL= "INFO"
## If set to true then the script will only run once and then exit
RUN_ONLY_ONCE= "False"
## How often to run the script in seconds
SLEEP_DURATION= "3600"
## Log file where all output will be written to
LOG_FILE= "/home/shrek/docker/data/jellyfin/log.log"
## Mark file where all shows/movies that have been marked as played will be written to
MARK_FILE= "/home/shrek/docker/data/jellyfin/mark.log"
## Timeout for requests for jellyfin
REQUEST_TIMEOUT= 300
## Max threads for processing
MAX_THREADS= 1
## Generate guids/locations
## These are slow processes, so this is a way to speed things up
## If media servers are using the same files then you can enable only generate locations
## If media servers are using different files then you can enable only generate guids
## Default is to generate both
GENERATE_GUIDS= "True"
GENERATE_LOCATIONS= "True"
## Map usernames between servers in the event that they are different, order does not matter
## Comma separated for multiple options
USER_MAPPING= { "Tobi1814": "Tobias" }
## Map libraries between servers in the event that they are different, order does not matter
## Comma separated for multiple options
LIBRARY_MAPPING= { "Shows": "TV Shows", "Movie": "Movies" }
## Blacklisting/Whitelisting libraries, library types such as Movies/TV Shows, and users. Mappings apply so if the mapping for the user or library exist then both will be excluded.
## Comma separated for multiple options
#BLACKLIST_LIBRARY = ""
#WHITELIST_LIBRARY = ""
#BLACKLIST_LIBRARY_TYPE = ""
#WHITELIST_LIBRARY_TYPE = ""
#BLACKLIST_USERS = ""
#WHITELIST_USERS = ""
# Plex
## Recommended to use token as it is faster to connect as it is direct to the server instead of going through the plex servers
## URL of the plex server, use hostname or IP address if the hostname is not resolving correctly
## Comma separated list for multiple servers
PLEX_BASEURL= "http://192.168.178.70:32400"
## Plex token https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
## Comma separated list for multiple servers
PLEX_TOKEN= "5WUY66oQ4A4jneDtJAVu"
## If not using plex token then use username and password of the server admin along with the servername
## Comma separated for multiple options
#PLEX_USERNAME = "PlexUser, PlexUser2"
#PLEX_PASSWORD = "SuperSecret, SuperSecret2"
#PLEX_SERVERNAME = "Plex Server1, Plex Server2"
## Skip hostname validation for ssl certificates.
## Set to True if running into ssl certificate errors
SSL_BYPASS= "False"
# Jellyfin
## Jellyfin server URL, use hostname or IP address if the hostname is not resolving correctly
## Comma separated list for multiple servers
JELLYFIN_BASEURL= "http://192.168.178.70:8096"
## Jellyfin api token, created manually by logging in to the jellyfin server admin dashboard and creating an api key
## Comma separated list for multiple servers
JELLYFIN_TOKEN= "fbe8243134424bf2a1a212f14921a7c6"
# Syncing Options
## control the direction of syncing. e.g. SYNC_FROM_PLEX_TO_JELLYFIN set to true will cause the updates from plex
## to be updated in jellyfin. SYNC_FROM_PLEX_TO_PLEX set to true will sync updates between multiple plex servers
SYNC_FROM_PLEX_TO_JELLYFIN= "True"
SYNC_FROM_PLEX_TO_PLEX= "false"
SYNC_FROM_PLEX_TO_EMBY= "false"
SYNC_FROM_JELLYFIN_TO_PLEX= "True"
SYNC_FROM_JELLYFIN_TO_JELLYFIN= "false"
SYNC_FROM_JELLYFIN_TO_EMBY= "false"
SYNC_FROM_EMBY_TO_PLEX= "false"
SYNC_FROM_EMBY_TO_JELLYFIN= "false"
SYNC_FROM_EMBY_TO_EMBY= "false"
+50 -109
View File
@@ -1,116 +1,57 @@
services: services:
navidrome: newt:
image: deluan/navidrome:latest image: fosrl/newt
container_name: navidrome container_name: newt
environment: restart: unless-stopped
ND_UILOGINBACKGROUNDURL: "https://images.unsplash.com/photo-1675702656416-fbc847ec4226?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" networks:
ports: - bragi-local
- 4533:4533 environment:
volumes: - PANGOLIN_ENDPOINT=https://tunnel.doeringer.eu
- /home/shrek/docker/data/navidrome:/data - NEWT_ID=yogqsqz240z1kgr
- /mnt/hdd/Media/Music:/music:ro - NEWT_SECRET=chw2i78vd9w9mqaeyjxq7iyrvpu6z365zgmkxxiccus76933
networks:
- bragi-local
restart: unless-stopped
jellyfin: hawser:
image: jellyfin/jellyfin image: ghcr.io/finsys/hawser:latest
container_name: jellyfin container_name: hawser
ports: volumes:
- 8096:8096/tcp - /var/run/docker.sock:/var/run/docker.sock
- 7359:7359/udp - /opt/hawser-stacks:/opt/hawser-stacks
networks: environment:
- bragi-local - STACKS_DIR=/opt/hawser-stacks
volumes: - DOCKHAND_SERVER_URL=wss://hydra.doeringer.eu/api/hawser/connect
- /home/shrek/docker/data/jellyfin/config:/config - TOKEN=Dj-xnGfioO4x2UcAS72ipxRzhP9PSJUS6F8R66vI2WQ
- /home/shrek/docker/data/jellyfin/cache:/cache
- type: bind
source: /mnt/big/Downloads/done
target: /films1
- type: bind
source: /mnt/immich/Media/Films
target: /films2
- type: bind
source: /mnt/big/Media/Films
target: /films3
- type: bind
source: /mnt/hdd/Media/Film
target: /films4
- type: bind
source: /mnt/big/data/torrents/movies
target: /films5
- type: bind
source: /mnt/big/data/downloads/movies
target: /films6
- type: bind
source: /mnt/big/Media/Film
target: /films7
- type: bind
source: /mnt/hdd/Media/Series
target: /series1
- type: bind
source: /mnt/big/data/downloads/tv/
target: /series2
- type: bind
source: /mnt/big/data/torrents/tv/
target: /series3
- type: bind
source: /mnt/big/Downloads/done/Series/
target: /series4
- type: bind
source: /mnt/big/Media/Series/
target: /series5
- type: bind
source: /mnt/big/Media/Film/Series/
target: /series6
- type: bind
source: /mnt/immich/Media/Series/
target: /series7
read_only: true
restart: 'unless-stopped'
runtime: nvidia
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
environment:
- JELLYFIN_PublishedServerUrl=https://stream.doeringer.eu
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
jellyplex-watched: n8n:
image: luigi311/jellyplex-watched:latest image: n8nio/n8n:latest
container_name: jellyplex-watched container_name: n8n
restart: unless-stopped restart: always
networks: user: "${n8n_user}"
- bragi-local networks:
environment: - bragi-local
- PUID=1000 # ports:
- PGID=1000 # - "${N8N_Port}:80"
env_file: "./.env" environment:
- N8N_COMMUNITY_PACKAGES_ENABLED=true
- DB_SQLITE_POOL_SIZE=4
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_RUNNERS_ENABLED=true
- NODE_FUNCTION_ALLOW_EXTERNAL=ws
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
- N8N_LISTEN_ADDRESS=0.0.0.0
- N8N_PROXY_HOPS=1
- N8N_PROTOCOL=https
- N8N_BASIC_AUTH_USER=${N8N_AUser}
- N8N_BASIC_AUTH_PASSWORD=${N8N_APass}
- N8N_HOST=${N8N_HOST}
- WEBHOOK_URL=${N8N_Webhook}
- N8N_PORT=80
- N8N_ENABLE_EXECUTE_COMMAND=true
- NODES_EXCLUDE=[]
#- NODE_TLS_REJECT_UNAUTHORIZED=0
volumes:
- /opt/00_infra/n8n:/home/node
droppedneedle:
image: ghcr.io/habirabbu/droppedneedle:latest
container_name: droppedneedle
networks:
- bragi-local
environment:
- PUID=1000
- PGID=1000
# - PORT=8688
- TZ=Europe/Berlin
- /mnt/hdd/Media/Music=/slskd-downloads
#ports:
#- "8688:8688"
volumes:
- /opt/03_media_player/droppedneedle/config:/app/config
- /opt/03_media_player/droppedneedle/cache:/app/cache
- /mnt/hdd/Media/Music:/music:rw
- /mnt/hdd/Media/Downloads/Music/downloads:/slskd-downloads:rw
restart: unless-stopped
networks: networks: