Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Allow for specifying the S3 Storage Class #205

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
⬆️ Upgrade s3backup dependency to 11.0
schlepptop committed Jul 14, 2020
commit 001dff3b98c4e3b74792970ea406bf194adb40a2
2 changes: 1 addition & 1 deletion common-functions
Original file line number Diff line number Diff line change
@@ -189,7 +189,7 @@ service_backup() {
dokku_log_fail "Provide AWS credentials or use the --use-iam flag"
fi

if [[ -f "S3_STORAGE_CLASS_FILE" ]]; then
if [[ ! -f "S3_STORAGE_CLASS_FILE" ]]; then
BACKUP_PARAMETERS="$BACKUP_PARAMETERS -e S3_STORAGE_CLASS=$(cat "$S3_STORAGE_CLASS_FILE")"
fi

2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
@@ -28,5 +28,5 @@ fi

export PLUGIN_BUSYBOX_IMAGE="busybox:1.31.1-uclibc"
export PLUGIN_AMBASSADOR_IMAGE="dokku/ambassador:0.3.3"
export PLUGIN_S3BACKUP_IMAGE="dokku/s3backup:0.10.3"
export PLUGIN_S3BACKUP_IMAGE="dokku/s3backup:0.11.0"
export PLUGIN_WAIT_IMAGE="dokku/wait:0.4.3"