All checks were successful
Deploy storage stack / deploy (push) Successful in 24s
16 lines
573 B
Bash
16 lines
573 B
Bash
# Storage stack — Postgres + MinIO
|
|
# Copy to .env for local use. Production .env is regenerated by the deploy
|
|
# workflow from Forgejo secrets.
|
|
|
|
# Postgres superuser (used only by init + admin tasks)
|
|
POSTGRES_PASSWORD=change-me
|
|
|
|
# MinIO root account (used only by init + admin tasks)
|
|
MINIO_ROOT_USER=storage-admin
|
|
MINIO_ROOT_PASSWORD=change-me-32-chars-min
|
|
|
|
# Per-app credentials provisioned by the init containers.
|
|
# These are also added as secrets on every consuming app's repo.
|
|
ASXPIO_DB_PASSWORD=change-me
|
|
ASXPIO_S3_ACCESS_KEY=change-me
|
|
ASXPIO_S3_SECRET_KEY=change-me
|