We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9651f commit 5cfbc52Copy full SHA for 5cfbc52
docker/web
@@ -1,4 +1,6 @@
1
#!/bin/bash
2
set -e
3
4
-bundle exec puma -b "tcp://$LISTEN_ON" -e "${RAILS_ENV:=development}"
+BIND="${BIND:=0.0.0.0}"
5
+PORT="${PORT:=3000}"
6
+bundle exec puma -b "tcp://${BIND}:${PORT}" -e "${RAILS_ENV:=development}"
0 commit comments