29 lines
878 B
YAML
29 lines
878 B
YAML
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
|