From 97ce2e1947ef374a15c5be52805ba804cdae1a89 Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Wed, 21 Aug 2019 14:16:22 +0100 Subject: [PATCH] only use puma if env var is actually set to true... --- docker/web | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/web b/docker/web index 637aa50d2572..1482aceb6f1c 100755 --- a/docker/web +++ b/docker/web @@ -23,7 +23,7 @@ if [ "$MIGRATE" = "true" ]; then bundle exec rake db:migrate fi -if [ "$USE_PUMA" ]; then +if [ "$USE_PUMA" = "true" ]; then # see `config/puma.rb` for configuration bundle exec rails server puma -b $BIND -p $PORT else