From 95fd4d6bc2f0693ee75db579866452036d869a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Tue, 20 Dec 2016 14:59:13 +0100 Subject: [PATCH] changed puma cmd --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 51dcbf7..a14b9bd 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 -p 3000 -b tcp://0.0.0.0 + bundle exec puma tcp://0.0.0.0:3000 elif [ "${RAILS_SERVER}" == "unicorn" ]; then bundle exec unicorn -p 3000 -c config/unicorn.rb fi