Author SHA1 Message Date
tobbbs af1739b30d Update compose.yaml 2026-07-14 17:28:26 +02:00
tobbbs 7daccdf71a Update compose.yaml 2026-07-14 16:29:27 +02:00
tobbbs cc75409d4b Update compose.yaml 2026-07-14 16:28:16 +02:00
tobbbs 9092880b3e Update compose.yaml 2026-06-02 17:05:10 +02:00
tobbbs 08c912b933 Update compose.yaml 2026-06-02 17:04:24 +02:00
tobbbs e126ce37af Add compose.yaml 2026-06-02 17:02:46 +02:00
tobbbs da83d83d9f Update README.md 2026-05-27 13:10:17 +02:00
2 changed files with 51 additions and 123 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
# Bragi-Local # Bragi-Local
My Compose Stacks for all my Docker Services running on my Local Server My Compose Stacks for all my Docker Services running on my Local Server
06_maintanance:
- Lubelogger
- Postgresql for Lubelogger
+46 -122
View File
@@ -1,129 +1,53 @@
version: '3.8'
services: services:
deemix: mealie:
image: ghcr.io/bambanah/deemix:latest image: ghcr.io/mealie-recipes/mealie:v2.8.0
container_name: Deemix container_name: mealie
volumes:
- /mnt/hdd/Media/Music:/downloads
- /opt/02_media_downloader/deemix:/config
environment:
- DEEMIX_SINGLE_USER=true
# ports:
# - '6595:6595'
networks:
- bragi-local
restart: unless-stopped
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 restart: always
# ports:
sabnzbd: # - 9925:9000
image: lscr.io/linuxserver/sabnzbd:latest deploy:
container_name: sabnzbd resources:
limits:
memory: 1000M #
networks:
- bragi-local
volumes: volumes:
- /opt/download/sabnzbd/config:/config - /home/shrek/docker/stack/mealie/mealie-data:/app/data/
- /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: environment:
- VPN_SERVICE_PROVIDER=protonvpn ALLOW_SIGNUP: "false"
- VPN_TYPE=openvpn TZ: Europe/Berlin
- OPENVPN_USER=${USER} DB_ENGINE: postgres
- OPENVPN_PASSWORD=${Password} POSTGRES_USER: mealie
# - SERVER_COUNTRIES=Bulgaria POSTGRES_PASSWORD: mealie
- UPDATER_PERIOD=24h POSTGRES_SERVER: postgres
ports: POSTGRES_PORT: 5432
- '6881:6881' # Torrent port forwarding (Crucial for Gluetun) POSTGRES_DB: mealie
- '7878:7878' # Radarr depends_on:
- '8087:8080' # Sabnzbd (Internal 8080 -> External 8088) postgres:
- '8989:8989' # Sonarr condition: service_healthy
- '9696:9696' # Prowlarr postgres:
- "5030:5030" # slskd HTTP networks:
- "5031:5031" # slskd HTTPS - bragi-local
- "50300:50300" # slskd Incoming Connections container_name: 04_groceries_postgres
restart: unless-stopped image: postgres:15
restart: always
volumes:
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: mealie
POSTGRES_USER: mealie
PGUSER: mealie
healthcheck:
test:
- CMD
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes:
mealie-data: null
mealie-pgdata: null
networks: networks:
bragi-local: bragi-local:
external: true external: true