Author SHA1 Message Date
tobbbs edb38f21c6 Update compose.yaml 2026-07-17 14:22:23 +02:00
tobbbs dcbfa78cdd Update compose.yaml 2026-07-08 14:05:45 +02:00
tobbbs 8312372039 Update compose.yaml 2026-07-08 13:38:35 +02:00
tobbbs 0ff7081889 Add compose.yaml 2026-05-26 16:34:12 +02:00
2 changed files with 119 additions and 32 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
# Bragi-Local # Bragi-Local
Services: My Compose Stacks for all my Docker Services running on my Local Server
- Vikunja
- Postgres for Vikunja
+119 -30
View File
@@ -1,40 +1,129 @@
version: '3.8'
services: services:
vikunja: deemix:
image: vikunja/vikunja image: ghcr.io/bambanah/deemix:latest
networks: container_name: Deemix
- bragi-local volumes:
- /mnt/hdd/Media/Music:/downloads
- /opt/02_media_downloader/deemix:/config
environment: environment:
VIKUNJA_SERVICE_PUBLICURL: https://tasks.doeringer.eu - DEEMIX_SINGLE_USER=true
VIKUNJA_DATABASE_HOST: db
VIKUNJA_DATABASE_PASSWORD: Mu4snEKrHvFPxsEAS8fq
VIKUNJA_DATABASE_TYPE: postgres
VIKUNJA_DATABASE_USER: vikunja
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_SERVICE_SECRET: MLuQnPRdYQSTFApQqsFSapyfGrbFsv
# ports: # ports:
# - 3456:3456 # - '6595:6595'
volumes:
- /opt/docker/todo/files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
restart: unless-stopped
db:
image: postgres:18
environment:
POSTGRES_PASSWORD: Mu4snEKrHvFPxsEAS8fq
POSTGRES_USER: vikunja
volumes:
- /opt/docker/todo/db:/var/lib/postgresql
networks: networks:
- bragi-local - bragi-local
restart: unless-stopped restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -h localhost -U $$POSTGRES_USER"]
interval: 2s
start_period: 30s
seerr:
image: ghcr.io/seerr-team/seerr:latest
init: true
container_name: Seerr
volumes:
- /opt/download/seerr/config:/app/config
ports:
- '5055:5055'
restart: unless-stopped
networks:
- bragi-local
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
# qbittorrent:
# image: lscr.io/linuxserver/qbittorrent:latest
# container_name: qbittorrent
# volumes:
# - /opt/download/qbittorrent/config:/config
# - /mnt/big/Media/Film:/downloads
# environment:
# - WEBUI_PORT=8088
# network_mode: service:gluetun
# restart: unless-stopped
slskd:
image: slskd/slskd
container_name: slskd
user: "1000:1000"
environment:
- SLSKD_REMOTE_CONFIGURATION=true
volumes:
- /opt/02_media_downloader/slskd/:/app
- /mnt/hdd/Media/incomplete:/downloads/incomplete
- /mnt/hdd/Media/Music:/downloads/complete
network_mode: service:gluetun
restart: always
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
volumes:
- /opt/download/sabnzbd/config:/config
- /mnt/big/Media/incomplete:/incomplete-downloads
- /mnt/big/Media/Film:/downloads
network_mode: service:gluetun
restart: unless-stopped
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: Prowlarr
volumes:
- /opt/download/prowlarr/config:/config
network_mode: service:gluetun
restart: unless-stopped
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: Radarr
volumes:
- /opt/download/radarr/config:/config
- /mnt/big/Media/Film/movies:/downloads
- /mnt/big/Media/Films:/movies
network_mode: service:gluetun
restart: unless-stopped
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
volumes:
- /opt/download/sonarr/data:/config
- /mnt/big/Media/Film/Series:/downloads
- /mnt/big/Media/Series:/tv
network_mode: service:gluetun
restart: unless-stopped
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
- net.ipv6.conf.all.disable_ipv6=0
devices:
- /dev/net/tun:/dev/net/tun
volumes:
- /opt/download/gluetun:/gluetun
environment:
- VPN_SERVICE_PROVIDER=protonvpn
- VPN_TYPE=openvpn
- OPENVPN_USER=${USER}
- OPENVPN_PASSWORD=${Password}
# - SERVER_COUNTRIES=Bulgaria
- UPDATER_PERIOD=24h
ports:
- '6881:6881' # Torrent port forwarding (Crucial for Gluetun)
- '7878:7878' # Radarr
- '8087:8080' # Sabnzbd (Internal 8080 -> External 8088)
- '8989:8989' # Sonarr
- '9696:9696' # Prowlarr
- "5030:5030" # slskd HTTP
- "5031:5031" # slskd HTTPS
- "50300:50300" # slskd Incoming Connections
restart: unless-stopped
networks: networks:
bragi-local: bragi-local:
external: true external: true