Merge pull request #2869 from nextcloud/enh/2830/rework-notify-push

rework notify-push in order to export values as env
This commit is contained in:
Simon L 2023-06-26 18:22:09 +02:00 committed by GitHub
commit 0c2905b658
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,12 +27,14 @@ elif [ "$CPU_ARCH" != "x86_64" ]; then
export CPU_ARCH="aarch64" export CPU_ARCH="aarch64"
fi fi
# Set sensitive values as env
export DATABASE_URL="postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST/$POSTGRES_DB"
export REDIS_URL="redis://:$REDIS_HOST_PASSWORD@$REDIS_HOST"
# Run it # Run it
/nextcloud/custom_apps/notify_push/bin/"$CPU_ARCH"/notify_push \ /nextcloud/custom_apps/notify_push/bin/"$CPU_ARCH"/notify_push \
--database-prefix="oc_" \ --database-prefix="oc_" \
--nextcloud-url "https://$NC_DOMAIN" \ --nextcloud-url "https://$NC_DOMAIN" \
--port 7867 \ --port 7867
--redis-url "redis://:$REDIS_HOST_PASSWORD@$REDIS_HOST" \
--database-url "postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST/$POSTGRES_DB"
exec "$@" exec "$@"