Skip to content

Commit 5cfbc52

Browse files
authored
Update web
1 parent 6c9651f commit 5cfbc52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/web

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
22
set -e
33

4-
bundle exec puma -b "tcp://$LISTEN_ON" -e "${RAILS_ENV:=development}"
4+
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

Comments
 (0)