From c08423c5adfdec20a6ed35e305b760ff3c86b94c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Tue, 20 Dec 2016 12:50:46 +0100 Subject: [PATCH] change puma command --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index b93f2b9..a1a94be 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 rails s -p 3000 -b 0.0.0.0 + bundle exec puma -p 3000 -b tcp://0.0.0.0 elif [ "${RAILS_SERVER}" == "unicorn" ]; then bundle exec unicorn -p 3000 -c config/unicorn.rb fi