29 lines
650 B
Bash
29 lines
650 B
Bash
################################################################
|
|
APPLICATION_NAME=gitea
|
|
|
|
MEDIADIR=/mnt/stpool1/NData1/Media
|
|
DOCKERDIR=/mnt/SSD1/docker/
|
|
|
|
STACKSDIR=${DOCKERDIR}/stacks/${APPLICATION_NAME}
|
|
DATADIR=${DOCKERDIR}/data/${APPLICATION_NAME}
|
|
SECRETSDIR=${STACKSDIR}/secrets
|
|
|
|
PUID=1000
|
|
PGID=1000
|
|
TZ=Africa/Johannesburg
|
|
DOMAINNAME=sthome.org
|
|
WEBUI_PORT=3000
|
|
################################################################
|
|
|
|
DB_TYPE=postgres
|
|
POSTGRES_DB_PORT=5432
|
|
POSTGRES_DB_FILE=/run/secrets/gitea_postgresql_database
|
|
POSTGRES_USER_FILE=/run/secrets/gitea_postgresql_username
|
|
POSTGRES_PASSWORD_FILE=/run/secrets/gitea_postgresql_password
|
|
|
|
|
|
|
|
|
|
|
|
|