You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
441 B
18 lines
441 B
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-8080}:8080"
|
|
environment:
|
|
FOOTAGE_ROOT: /footage
|
|
DB_PATH: /data/cammonitor.db
|
|
ADMIN_USER: ${ADMIN_USER:-admin}
|
|
ADMIN_PASS: ${ADMIN_PASS:-changeme}
|
|
SESSION_TTL: ${SESSION_TTL:-24h}
|
|
SCAN_INTERVAL: ${SCAN_INTERVAL:-5m}
|
|
volumes:
|
|
- ${FOOTAGE_ROOT:-./testdata/footage}:/footage:ro
|
|
- cammonitor_data:/data
|
|
|
|
volumes:
|
|
cammonitor_data:
|
|
|