21 lines
697 B
Bash
21 lines
697 B
Bash
# ==============================================================================
|
|
# Kestra Stack Environment Variables
|
|
# ==============================================================================
|
|
# This file is used by Portainer when deploying from Git repository.
|
|
# Sensitive values (marked CHANGE_ME) must be set in Portainer UI.
|
|
# ==============================================================================
|
|
|
|
# Tailscale
|
|
TS_AUTHKEY=CHANGE_ME
|
|
|
|
# PostgreSQL
|
|
DB_HOST=postgresql.taila5ad8.ts.net
|
|
DB_PORT=5432
|
|
DB_NAME=kestra
|
|
DB_USER=kestra
|
|
DB_PASSWORD=CHANGE_ME
|
|
|
|
# Kestra Authentication (username must be a valid email address)
|
|
KESTRA_ADMIN_USER=admin@kestra.io
|
|
KESTRA_ADMIN_PASSWORD=CHANGE_ME
|