From 63c06838551b238c6dfc733283c3cf362c83c90b Mon Sep 17 00:00:00 2001 From: Cassowary Date: Thu, 4 Jul 2024 18:28:54 -0700 Subject: [PATCH] tehune --- abra.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abra.sh b/abra.sh index e8dc0b2..b933148 100755 --- a/abra.sh +++ b/abra.sh @@ -58,12 +58,12 @@ generate_secrets() { echo "Generating secrets for new Hometown deployment..." echo "" - SECRET_KEY_BASE=$(docker run --rm tootsuite/mastodon:v4.2.0 bundle exec rake secret) + SECRET_KEY_BASE=$(docker run --rm tootsuite/mastodon:latest bundle exec rake secret) abra app secret insert "$APP_NAME" secret_key_base v1 "$SECRET_KEY_BASE" echo "SECRET_KEY_BASE = $SECRET_KEY_BASE" echo "" - OTP_SECRET=$(docker run --rm tootsuite/mastodon:v4.2.0 bundle exec rake secret) + OTP_SECRET=$(docker run --rm tootsuite/mastodon:latest bundle exec rake secret) abra app secret insert "$APP_NAME" otp_secret v1 "$OTP_SECRET" echo "OTP_SECRET = $OTP_SECRET" echo ""