97 lines
2.9 KiB
YAML
97 lines
2.9 KiB
YAML
services:
|
|
navidrome:
|
|
image: deluan/navidrome:latest
|
|
container_name: navidrome
|
|
environment:
|
|
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"
|
|
ports:
|
|
- 4533:4533
|
|
volumes:
|
|
- /home/shrek/docker/data/navidrome:/data
|
|
- /mnt/hdd/Media/Music:/music:ro
|
|
networks:
|
|
- bragi-local
|
|
restart: unless-stopped
|
|
|
|
jellyfin:
|
|
image: jellyfin/jellyfin
|
|
container_name: jellyfin
|
|
ports:
|
|
- 8096:8096/tcp
|
|
- 7359:7359/udp
|
|
networks:
|
|
- bragi-local
|
|
volumes:
|
|
- /home/shrek/docker/data/jellyfin/config:/config
|
|
- /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
|
|
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:
|
|
image: luigi311/jellyplex-watched:latest
|
|
container_name: jellyplex-watched
|
|
restart: unless-stopped
|
|
networks:
|
|
- bragi-local
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
env_file: "./.env"
|
|
|
|
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:
|
|
bragi-local:
|
|
external: true |