-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
24 lines (23 loc) · 1.18 KB
/
Copy path.env.example
File metadata and controls
24 lines (23 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# AionDB local-evaluation overrides for `docker compose up`.
#
# SECURITY:
# * The values below are PLACEHOLDERS. Replace them with your own before
# starting the stack. Never reuse the example strings: a forked deployment
# using these values would be reachable by anyone who reads this file.
# * docker-compose.yml will refuse to start if AIONDB_BOOTSTRAP_USER or
# AIONDB_BOOTSTRAP_PASSWORD are unset.
# * The local-eval stack runs WITHOUT TLS on a published port. Do not expose
# it to untrusted networks. For non-loopback deployments configure TLS:
# AIONDB_PGWIRE_TLS_MODE=require with cert+key paths.
#
# Copy this file to `.env` and fill in real values:
# cp .env.example .env
AIONDB_PGWIRE_PORT=5432
# Override only if you publish images from a fork or want a pinned release tag.
# AIONDB_IMAGE=ghcr.io/ayoubnabil/aiondb:main
# AIONDB_STUDIO_IMAGE=ghcr.io/ayoubnabil/aiondb-studio:main
AIONDB_BOOTSTRAP_USER=CHANGE_ME
AIONDB_BOOTSTRAP_PASSWORD=CHANGE_ME_TO_A_STRONG_PASSWORD
AIONDB_STUDIO_PORT=8082
# URL-encode the password if it contains ! @ : / etc.
AIONDB_STUDIO_DATABASE_URL=postgres://CHANGE_ME:CHANGE_ME_TO_A_STRONG_PASSWORD@aiondb:5432/default?sslmode=disable