mirror of
https://github.com/crabwise-ai/crabwalk.git
synced 2026-08-14 00:57:52 +00:00
- parse ALLOWED_HOSTS into vite server.allowedHosts for LAN/tailscale access - copy src/, public/, vite.config.ts, tsconfig.json into Docker runtime stage (dev server needs these, only dist/ was copied before) - pass ALLOWED_HOSTS through docker-compose Ref #10
10 lines
231 B
YAML
10 lines
231 B
YAML
services:
|
|
crabwalk:
|
|
image: ghcr.io/luccast/crabwalk:latest
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- CLAWDBOT_API_TOKEN=${CLAWDBOT_API_TOKEN}
|
|
- ALLOWED_HOSTS=${ALLOWED_HOSTS:-}
|
|
restart: unless-stopped
|