20 lines
617 B
Bash
20 lines
617 B
Bash
export DATABASE_CONFIG_VERSION=v1
|
|
export APP_ENTRYPOINT_VERSION=v3
|
|
export AUTH_PROVIDER_VERSION=v1
|
|
export ELASTIC_SEARCH_CONFIG_VERSION=v1
|
|
export ELASTIC_SEARCH_LOG_CONFIG_VERSION=v1
|
|
export PG_BACKUP_VERSION=v1
|
|
|
|
# since supervisors log in the default app image doesn't get redirected to stdout, we need a function to get the log
|
|
function getSupervisorErrorLog()
|
|
{
|
|
cat /var/log/supervisor/worker-stderr.log
|
|
}
|
|
|
|
# since supervisors log in the default app image doesn't get redirected to stdout, we need a function to get the log
|
|
function getSupervisorStandardLog()
|
|
{
|
|
cat /var/log/supervisor/worker-stdout.log
|
|
}
|
|
|