15 lines
246 B
Bash
15 lines
246 B
Bash
# Runtime
|
|
HOST=0.0.0.0
|
|
PORT=10000
|
|
|
|
# In Docker, keep the database inside the mounted /app/data directory.
|
|
DATABASE_URL=sqlite:////app/data/app.db
|
|
|
|
# Host-side persistent data directory
|
|
DATA_DIR=./data
|
|
|
|
# Container user mapping
|
|
UID=1000
|
|
GID=1000
|
|
|