Hi, I am trying to access my openclaw docker on my LAN network and its not working, I am always receiving this error message when accessing it: origin not allowed (open the Control UI from the gateway host or allow it in gateway.controlUi.allowedOrigins)
I did run openclaw dashboard in my docker shell with the right token and link, it just doesnt want to connect at all. Ollama and searxng are also running without issues.
This is my docker compose file:
openclaw-gateway:
image: ghcr.io/openclaw/openclaw:latest
container_name: openclaw-gateway
restart: unless-stopped
ports:
- 18789:18789
volumes:
- /mnt/ai/pmbeai/appdata/openclaw/config:/home/node/.openclaw
- /mnt/ai/pmbeai/appdata/openclaw/workspace:/home/node/.openclaw/workspace
environment:
- OPENCLAW_GATEWAY_BIND=lan
- OPENCLAW_GATEWAY_MODE=local
- NODE_ENV=production
Thanks!!