Skip to content

Commit 21e8fb2

Browse files
authored
fix: Allow develop.sh to host docker workspaces (#3802)
1 parent 57c7fcf commit 21e8fb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/develop.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ CODER_DEV_SHIM="${PROJECT_ROOT}/scripts/coder-dev.sh"
5959
# rather than leaving things in an inconsistent state.
6060
trap 'kill -TERM -$$' ERR
6161
cdroot
62-
"${CODER_DEV_SHIM}" server --address 127.0.0.1:3000 --tunnel || kill -INT -$$ &
62+
"${CODER_DEV_SHIM}" server --address 0.0.0.0:3000 --tunnel || kill -INT -$$ &
6363

6464
echo '== Waiting for Coder to become ready'
6565
timeout 60s bash -c 'until curl -s --fail http://localhost:3000 > /dev/null 2>&1; do sleep 0.5; done'

0 commit comments

Comments
 (0)