-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (26 loc) · 1007 Bytes
/
.env.example
File metadata and controls
36 lines (26 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# mallardb Configuration
# Copy this file to .env and modify as needed
# Required: Admin password
POSTGRES_PASSWORD=secret
# Optional: Admin username (default: mallard)
# POSTGRES_USER=mallard
# Optional: Database name (default: same as POSTGRES_USER)
# POSTGRES_DB=mallard
# Optional: Read-only user credentials
# POSTGRES_READONLY_USER=reader
# POSTGRES_READONLY_PASSWORD=readerpass
# Optional: Network settings
# MALLARDB_HOST=0.0.0.0
# MALLARDB_PORT=5432
# Optional: Database file path
# MALLARDB_DATABASE=./data/mallard.db
# Optional: Init script directories
# MALLARDB_INITDB_DIR=/docker-entrypoint-initdb.d
# MALLARDB_STARTDB_DIR=/docker-entrypoint-startdb.d
# Optional: Jobs scheduler directory (watched for changes at runtime)
# MALLARDB_JOBS_DIR=./jobs
# Optional: TLS/SSL (both required to enable TLS)
# MALLARDB_TLS_CERT=/path/to/server.crt
# MALLARDB_TLS_KEY=/path/to/server.key
# Note: MALLARDB_* prefix also works for all POSTGRES_* variables
# and takes precedence if both are set