File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ COPY src ./src
7171# IMPORTANT: Do not set a default PORT here.
7272# Railway injects PORT at runtime and routes traffic to that port.
7373# If we force a different port, deployments can come up but the domain will route elsewhere.
74- EXPOSE 3000
74+ EXPOSE 8080
7575
7676# Ensure PID 1 reaps zombies and forwards signals.
7777ENTRYPOINT ["tini" , "--" ]
Original file line number Diff line number Diff line change @@ -115,15 +115,15 @@ Recommendations:
115115``` bash
116116docker build -t clawdbot-railway-template .
117117
118- docker run --rm -p 3000:3000 \
119- -e PORT=3000 \
118+ docker run --rm -p 8080:8080 \
119+ -e PORT=8080 \
120120 -e SETUP_PASSWORD=test \
121121 -e OPENCLAW_STATE_DIR=/data/.openclaw \
122122 -e OPENCLAW_WORKSPACE_DIR=/data/workspace \
123123 -v $( pwd) /.tmpdata:/data \
124124 clawdbot-railway-template
125125
126- # open http://localhost:3000 /setup (password: test)
126+ # open http://localhost:8080 /setup (password: test)
127127```
128128
129129---
You can’t perform that action at this time.
0 commit comments