Skip to content

Commit

Permalink
only use puma if env var is actually set to true...
Browse files Browse the repository at this point in the history
  • Loading branch information
machisuji committed Aug 21, 2019
1 parent 04a8484 commit 97ce2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/web
Expand Up @@ -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
Expand Down

0 comments on commit 97ce2e1

Please sign in to comment.