From 50616a44e3be7ad32373eb930fd0fb518d5498a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Tue, 20 Dec 2016 15:00:52 +0100 Subject: [PATCH] fix puma cmd --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index a14b9bd..8e48859 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -56,7 +56,7 @@ if [ "$1" = 'zammad' ]; then bundle exec script/scheduler.rb start & if [ "${RAILS_SERVER}" == "puma" ]; then - bundle exec puma tcp://0.0.0.0:3000 + bundle exec puma -b tcp://0.0.0.0:3000 elif [ "${RAILS_SERVER}" == "unicorn" ]; then bundle exec unicorn -p 3000 -c config/unicorn.rb fi