This commit is contained in:
maxDorninger
2025-03-28 19:21:11 +01:00
parent f13228dba9
commit 3a80f874f9
22 changed files with 299 additions and 271 deletions

View File

@@ -3,7 +3,7 @@ services:
image: postgres:latest
restart: unless-stopped
volumes:
- .\MediaManager\res\postgres:/var/lib/postgresql/data
- .\backend\res\postgres:/var/lib/postgresql/data
environment:
POSTGRES_USER: MediaManager
POSTGRES_DB: MediaManager
@@ -18,12 +18,26 @@ services:
- PGID=1000
- TZ=Etc/UTC
volumes:
- .\MediaManager\res\prowlarr:/config
- .\backend\res\prowlarr:/config
ports:
- "9696:9696"
ollama:
image: ollama/ollama
volumes:
- .\MediaManager\res\ollama:/root/.ollama
- .\backend\res\ollama:/root/.ollama
ports:
- "11434:11434"
- "11434:11434"
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped