22 lines
644 B
Bash
22 lines
644 B
Bash
# VideoDetect — Docker Compose environment variables
|
|
# Copy this file to .env and fill in real values before running docker-compose up.
|
|
|
|
# -----------------------------------------------------
|
|
# Database
|
|
# -----------------------------------------------------
|
|
DB_ROOT_PASSWORD=changeme_root
|
|
DB_PASSWORD=changeme_videodetect
|
|
DB_USER=videodetect
|
|
DB_NAME=videodetect
|
|
DB_HOST=mariadb
|
|
|
|
API_HOST=https://api:3000
|
|
|
|
# -----------------------------------------------------
|
|
# Storage paths (host-side mounts)
|
|
# -----------------------------------------------------
|
|
NAS_OUTPUT_PATH=${PWD}/output
|
|
MODELS_PATH=${PWD}/models
|
|
TRAINING_PATH=${PWD}/training
|
|
|