mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-06-04 11:24:40 +08:00

* fix: Quote variables in `docker-entrypoint.sh` - This commit adds double quotes around variables in the docker-entrypoint.sh script to prevent word splitting and globbing issues, ensuring the script behaves correctly in all cases. * fix: Ensure worker/api deployment starts with `OPENAI_API_KEY` * fix: Add missing `FLY_PROCESS_GROUP` env var to deployments * fix: Correct `PLAYWRIGHT_MICROSERVICE_URL` in `firecrawl-config` * fix: Update Docker build options for Apple Silicon compatibility * fix: Correct `PLAYWRIGHT_MICROSERVICE_URL` in `firecrawl-config`
14 lines
336 B
YAML
14 lines
336 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: firecrawl-config
|
|
data:
|
|
NUM_WORKERS_PER_QUEUE: "8"
|
|
PORT: "3002"
|
|
HOST: "0.0.0.0"
|
|
REDIS_URL: "redis://redis:6379"
|
|
REDIS_RATE_LIMIT_URL: "redis://redis:6379"
|
|
PLAYWRIGHT_MICROSERVICE_URL: "http://playwright-service:3000"
|
|
USE_DB_AUTHENTICATION: "false"
|
|
HDX_NODE_BETA_MODE: "1"
|