From 627ebb5ab684adfc77d7b99d023c8a48552f4876 Mon Sep 17 00:00:00 2001 From: indra Date: Tue, 12 Nov 2024 19:26:20 +1100 Subject: [PATCH] feat: enable env overrides for support images allows for support images to be pulled from alternative or private registries. --- config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config b/config index 2743176..0b14305 100644 --- a/config +++ b/config @@ -28,9 +28,9 @@ if [[ -n $DOKKU_API_VERSION ]]; then export PLUGIN_BASE_PATH="$PLUGIN_ENABLED_PATH" fi -export PLUGIN_BUSYBOX_IMAGE="busybox:1.34.1-uclibc" -export PLUGIN_AMBASSADOR_IMAGE="dokku/ambassador:0.5.0" -export PLUGIN_S3BACKUP_IMAGE="dokku/s3backup:0.14.0" -export PLUGIN_WAIT_IMAGE="dokku/wait:0.6.0" +export PLUGIN_BUSYBOX_IMAGE=${PLUGIN_BUSYBOX_IMAGE:=busybox:1.34.1-uclibc} +export PLUGIN_AMBASSADOR_IMAGE=${PLUGIN_AMBASSADOR_IMAGE:=dokku/ambassador:0.5.0} +export PLUGIN_S3BACKUP_IMAGE=${PLUGIN_S3BACKUP_IMAGE:=dokku/s3backup:0.14.0} +export PLUGIN_WAIT_IMAGE=${PLUGIN_WAIT_IMAGE:=dokku/wait:0.6.0} export POSTGRES_CONFIG_OPTIONS=${POSTGRES_CONFIG_OPTIONS:=""}