You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Docker instructions and dev dependencies (#2032)
Expanded and clarified Docker usage instructions in README.md, including environment variable setup and workflow details. Updated @cloudflare/workers-types and wrangler dev dependencies in package.json to newer versions.
# Production-style container using composed services
195
+
docker compose --profile production up
196
+
197
+
# One-off production container (exposes the app on port 5173)
198
+
docker run --rm -p 5173:5173 --env-file .env.local bolt-ai:latest
178
199
```
179
200
201
+
When the container starts it runs `pnpm run dockerstart`, which in turn executes `bindings.sh` to pass Cloudflare bindings through Wrangler. You can override this commandin`docker-compose.yaml`if you need a different startup routine.
202
+
180
203
### Option 3: Desktop Application (Electron)
181
204
182
205
For users who prefer a native desktop experience, bolt.diy is also available as an Electron desktop application:
0 commit comments