23 lines
634 B
Bash
23 lines
634 B
Bash
# Airtrail app image tag
|
|
AIRTRAIL_VERSION=latest
|
|
|
|
# Host port to expose the Airtrail web UI on
|
|
AIRTRAIL_PORT=3000
|
|
|
|
# Postgres image major version
|
|
AIRTRAIL_POSTGRES_VERSION=16
|
|
|
|
# Database name, username, and password for the Postgres instance
|
|
AIRTRAIL_DB_DATABASE_NAME=airtrail
|
|
AIRTRAIL_DB_USERNAME=airtrailuser
|
|
AIRTRAIL_DB_PASSWORD=
|
|
|
|
# Public-facing URL of the Airtrail app (used by the app for CORS/redirects)
|
|
AIRTRAIL_ORIGIN=http://192.168.1.100:3000
|
|
|
|
# IP address of the NFS server
|
|
AIRTRAIL_NFS_SERVER=192.168.1.50
|
|
|
|
# NFS export path for the database volume (must include leading colon)
|
|
AIRTRAIL_NFS_DEVICE=:/mnt/pool1/airtrail-db
|