23 lines
485 B
Bash
Executable File
23 lines
485 B
Bash
Executable File
# Set any config versions here
|
|
# Docs: https://docs.coopcloud.tech/maintainers/handbook/#manage-configs
|
|
export ABRA_ENTRYPOINT_VERSION=v5
|
|
export NGINX_CONF_VERSION=v6
|
|
export ONLYOFFICE_CONF_VERSION=v1
|
|
export PG_BACKUP_VERSION=v3
|
|
|
|
environment() {
|
|
# this exports all the secrets as environment variables
|
|
source /abra-entrypoint.sh -e
|
|
}
|
|
|
|
migrate() {
|
|
environment
|
|
python manage.py migrate --noinput
|
|
}
|
|
|
|
trigger_wopi() {
|
|
environment
|
|
python manage.py trigger_wopi_configuration
|
|
}
|
|
|