22 lines
480 B
Bash
22 lines
480 B
Bash
# Docker registry URL (used in docker-compose.yml)
|
|
REGISTRY_URL=registry.kucharczyk.xyz
|
|
|
|
# Container timezone
|
|
TZ=Europe/Prague
|
|
|
|
# User/group IDs for container (used in entrypoint.sh)
|
|
PUID=1000
|
|
PGID=100
|
|
|
|
# External port mapping
|
|
TIMETRACKER_EXTERNAL_PORT=8000
|
|
|
|
# Django production mode (set to "1" for production)
|
|
PROD=1
|
|
|
|
# Database directory (defaults to project root)
|
|
DATA_DIR=/home/timetracker/app/data
|
|
|
|
# CSRF trusted origins
|
|
CSRF_TRUSTED_ORIGINS=https://tracker.kucharczyk.xyz
|