Moved to _dev
This commit is contained in:
28
mediamanager/mdmngr-compose.yaml
Normal file
28
mediamanager/mdmngr-compose.yaml
Normal 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
|
||||
Reference in New Issue
Block a user