Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
services:
mediamanager:
image: ghcr.io/maxdorninger/mediamanager/mediamanager:latest
ports:
- "8000:8000"
environment:
- CONFIG_DIR=/app/config
volumes:
# Mount your actual media directories here - these paths should match your config.toml
- ./data/:/data/ # Example: change ./data/ to your actual media root
# Config folder for application configuration
- ./config/:/app/config/
# Image folder
- ./images/:/data/images/
db:
image: postgres:latest
restart: unless-stopped
volumes:
- ./postgres:/var/lib/postgresql/data
healthcheck:
test: [ "CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}" ]
interval: 10s
timeout: 5s
retries: 5
environment:
POSTGRES_USER: admin
POSTGRES_DB: MediaManager
POSTGRES_PASSWORD: Y9iSk4iWWgfxACZK