From fb8fb8c51222d0917afcb9813e8604e34a0f1f29 Mon Sep 17 00:00:00 2001 From: Marcel Herrguth Date: Tue, 22 Jun 2021 14:46:29 +0200 Subject: [PATCH] Maintenance: Ensure puma knows it's config --- containers/zammad/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/zammad/docker-entrypoint.sh b/containers/zammad/docker-entrypoint.sh index 7d9a72f..877dda1 100755 --- a/containers/zammad/docker-entrypoint.sh +++ b/containers/zammad/docker-entrypoint.sh @@ -152,7 +152,7 @@ if [ "$1" = 'zammad-railsserver' ]; then echo "starting railsserver... with WEB_CONCURRENCY=${ZAMMAD_WEB_CONCURRENCY}" #shellcheck disable=SC2101 - exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" "${PUMA_OPTS}" -e "${RAILS_ENV}" + exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" "${PUMA_OPTS}" -e "${RAILS_ENV}" -c "/opt/zammad/config.ru" fi