Closed6

firecrawl のインストール

しょっさんしょっさん
git clone https://github.com/mendableai/firecrawl.git
Cloning into 'firecrawl'...
remote: Enumerating objects: 41737, done.
remote: Counting objects: 100% (1643/1643), done.
remote: Compressing objects: 100% (651/651), done.
remote: Total 41737 (delta 1350), reused 1003 (delta 992), pack-reused 40094 (from 3)
Receiving objects: 100% (41737/41737), 60.13 MiB | 11.99 MiB/s, done.
Resolving deltas: 100% (31047/31047), done.
cd firecrawl/
しょっさんしょっさん
ls -latr
total 192
drwxr-xr-x@  4 sho  staff    128 Jul 27 15:43 ../
-rw-r--r--@  1 sho  staff     66 Jul 27 15:44 .gitattributes
drwxr-xr-x@  8 sho  staff    256 Jul 27 15:44 .github/
-rw-r--r--@  1 sho  staff    763 Jul 27 15:44 .gitignore
-rw-r--r--@  1 sho  staff    271 Jul 27 15:44 .gitmodules
-rw-r--r--@  1 sho  staff   4121 Jul 27 15:44 CONTRIBUTING.md
-rw-r--r--@  1 sho  staff  35064 Jul 27 15:44 LICENSE
-rw-r--r--@  1 sho  staff  22712 Jul 27 15:44 README.md
-rw-r--r--@  1 sho  staff   9032 Jul 27 15:44 SELF_HOST.md
drwxr-xr-x@ 11 sho  staff    352 Jul 27 15:44 apps/
-rw-r--r--@  1 sho  staff   3040 Jul 27 15:44 docker-compose.yaml
drwxr-xr-x@ 57 sho  staff   1824 Jul 27 15:44 examples/
drwxr-xr-x@ 15 sho  staff    480 Jul 27 15:44 ./
drwxr-xr-x@  4 sho  staff    128 Jul 27 15:44 img/
drwxr-xr-x@ 12 sho  staff    384 Jul 27 15:44 .git/
しょっさんしょっさん
.env
# ===== Required ENVS ======
PORT=3002
HOST=0.0.0.0

# Note: PORT is used by both the main API server and worker liveness check endpoint

# To turn on DB authentication, you need to set up Supabase.
USE_DB_AUTHENTICATION=false

# ===== Optional ENVS ======

## === AI features (JSON format on scrape, /extract API) ===
# Provide your OpenAI API key here to enable AI features
# OPENAI_API_KEY=

# Experimental: Use Ollama
# OLLAMA_BASE_URL=http://localhost:11434/api
# MODEL_NAME=deepseek-r1:7b
# MODEL_EMBEDDING_NAME=nomic-embed-text

# Experimental: Use any OpenAI-compatible API
# OPENAI_BASE_URL=https://example.com/v1
# OPENAI_API_KEY=

## === Proxy ===
# PROXY_SERVER can be a full URL (e.g. http://0.1.2.3:1234) or just an IP and port combo (e.g. 0.1.2.3:1234)
# Do not uncomment PROXY_USERNAME and PROXY_PASSWORD if your proxy is unauthenticated
# PROXY_SERVER=
# PROXY_USERNAME=
# PROXY_PASSWORD=

## === /search API ===
# By default, the /search API will use Google search.

# You can specify a SearXNG server with the JSON format enabled, if you'd like to use that instead of direct Google.
# You can also customize the engines and categories parameters, but the defaults should also work just fine.
# SEARXNG_ENDPOINT=http://your.searxng.server
# SEARXNG_ENGINES=
# SEARXNG_CATEGORIES=

## === Other ===

# Supabase Setup (used to support DB authentication, advanced logging, etc.)
# SUPABASE_ANON_TOKEN=
# SUPABASE_URL=
# SUPABASE_SERVICE_TOKEN=

# Use if you've set up authentication and want to test with a real API key
# TEST_API_KEY=
TEST_API_KEY=fc-xxxxxxxxxxxxxxxxxxxxxxx

# This key lets you access the queue admin panel. Change this if your deployment is publicly accessible.
BULL_AUTH_KEY=CHANGEME

# This is now autoconfigured by the docker-compose.yaml. You shouldn't need to set it.
# PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/scrape
# REDIS_URL=redis://redis:6379
# REDIS_RATE_LIMIT_URL=redis://redis:6379

# Set if you have a llamaparse key you'd like to use to parse pdfs
# LLAMAPARSE_API_KEY=

# Set if you'd like to send server health status messages to Slack
# SLACK_WEBHOOK_URL=

# Set if you'd like to send posthog events like job logs
# POSTHOG_API_KEY=
# POSTHOG_HOST=

## === System Resource Configuration ===
# Maximum CPU usage threshold (0.0-1.0). Worker will reject new jobs when CPU usage exceeds this value.
# Default: 0.8 (80%)
# MAX_CPU=0.8

# Maximum RAM usage threshold (0.0-1.0). Worker will reject new jobs when memory usage exceeds this value.
# Default: 0.8 (80%)
# MAX_RAM=0.8

なくても良いだろうけど、一応 TEST_API_KEY は設定した。
注意するポイントとしては、PORT=3002 で port 番号が被らないようにすること。

しょっさんしょっさん
docker compose build
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "TEST_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "BLOCK_MEDIA" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "TEST_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "TEST_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
しょっさんしょっさん

続き

[+] Building 101.5s (51/51) FINISHED
 => [internal] load local bake definitions                                                                       0.0s
 => => reading from stdin 1.05kB                                                                                 0.0s
 => [worker internal] load build definition from Dockerfile                                                      0.0s
 => => transferring dockerfile: 2.41kB                                                                           0.0s
 => [playwright-service internal] load build definition from Dockerfile                                          0.0s
 => => transferring dockerfile: 329B                                                                             0.0s
 => [api internal] load metadata for docker.io/library/rust:1-slim                                               2.7s
 => [api internal] load metadata for docker.io/library/node:22-slim                                              2.7s
 => [playwright-service internal] load metadata for docker.io/library/node:18-slim                               2.7s
 => [api internal] load metadata for docker.io/library/golang:1.24                                               2.6s
 => [auth] library/node:pull token for registry-1.docker.io                                                      0.0s
 => [auth] library/rust:pull token for registry-1.docker.io                                                      0.0s
 => [auth] library/golang:pull token for registry-1.docker.io                                                    0.0s
 => [playwright-service internal] load .dockerignore                                                             0.0s
 => => transferring context: 67B                                                                                 0.0s
 => [playwright-service 1/7] FROM docker.io/library/node:18-slim@sha256:f9ab18e354e6855ae56ef2b290dd225c1e51a56  3.7s
 => => resolve docker.io/library/node:18-slim@sha256:f9ab18e354e6855ae56ef2b290dd225c1e51a564f87584b9bd21dd6518  0.0s
 => => sha256:f9ab18e354e6855ae56ef2b290dd225c1e51a564f87584b9bd21dd651838830e 6.49kB / 6.49kB                   0.0s
 => => sha256:0cc5f8897ffbf799d16ffe58bf3ce6242d23e5f9aa658e55b8d5ca8fc7f01bad 1.93kB / 1.93kB                   0.0s
 => => sha256:c1f2ed8bac52e9b1023ffa1ee5bbf1e0fd0ba478a31b2a321c534de24b3e3893 6.56kB / 6.56kB                   0.0s
 => => sha256:b16f1b16678093d11ecfece1004207a40f9bc1b7d9d1d16a070c1db552038818 28.07MB / 28.07MB                 1.2s
 => => sha256:96432eac497bc44f4b93d2e24bdf250d7798a55274aa2d7c5495988bf30191f7 3.31kB / 3.31kB                   0.4s
 => => sha256:bab3dec6af72cc8d9f12335fe020276b8288070bafb8efa2c5308b56d14d8e72 38.30MB / 38.30MB                 1.6s
 => => sha256:2f0d35c51a75cbc9fc4ddeb36aa3e8b7e268306bffe70543e6b02627a54a13c4 1.71MB / 1.71MB                   0.9s
 => => sha256:378bc28767f6d83e7481f8c90d0e8be1140bb875d4f1c67dea8b3b52baa48282 448B / 448B                       1.3s
 => => extracting sha256:b16f1b16678093d11ecfece1004207a40f9bc1b7d9d1d16a070c1db552038818                        1.2s
 => => extracting sha256:96432eac497bc44f4b93d2e24bdf250d7798a55274aa2d7c5495988bf30191f7                        0.0s
 => => extracting sha256:bab3dec6af72cc8d9f12335fe020276b8288070bafb8efa2c5308b56d14d8e72                        1.0s
 => => extracting sha256:2f0d35c51a75cbc9fc4ddeb36aa3e8b7e268306bffe70543e6b02627a54a13c4                        0.0s
 => => extracting sha256:378bc28767f6d83e7481f8c90d0e8be1140bb875d4f1c67dea8b3b52baa48282                        0.0s
 => [playwright-service internal] load build context                                                             0.0s
 => => transferring context: 50.55kB                                                                             0.0s
 => [api internal] load .dockerignore                                                                            0.0s
 => => transferring context: 73B                                                                                 0.0s
 => [worker base 1/4] FROM docker.io/library/node:22-slim@sha256:2fa754a9ba4d7adbd2a51d182eaabbe355c82b67362403  9.8s
 => => resolve docker.io/library/node:22-slim@sha256:2fa754a9ba4d7adbd2a51d182eaabbe355c82b673624035a38c0d42b08  0.0s
 => => sha256:2fa754a9ba4d7adbd2a51d182eaabbe355c82b673624035a38c0d42b08724854 6.49kB / 6.49kB                   0.0s
 => => sha256:f31365dd54da647fa44463f9b70391c748ffcf5e0ec0960115ab4b032d1f89ec 1.93kB / 1.93kB                   0.0s
 => => sha256:ac75f04cd26ae343262d62a7138e19a316a4b3d8b2bb53f3d54ef68687252270 6.80kB / 6.80kB                   0.0s
 => => sha256:d4075b4d8c2bbb41a9c103f564a31f44b219401cc328601158d450e529533534 3.31kB / 3.31kB                   5.6s
 => => extracting sha256:d4075b4d8c2bbb41a9c103f564a31f44b219401cc328601158d450e529533534                        0.0s
 => => sha256:a2282fee2cf18bc64b43d263eedc54f0d6ad5ac7a1a3cb1d14866da64584bdae 48.68MB / 48.68MB                 7.8s
 => => sha256:9921b3a2f2aee67761546515abdc85aaf75f6ea0a65626432004e37a1e681d37 1.71MB / 1.71MB                   7.6s
 => => sha256:6c1b169e599027b872b8ce4f1ca9ba96faea75bad1210d73c46db7affe3ca2b6 449B / 449B                       7.5s
 => => extracting sha256:a2282fee2cf18bc64b43d263eedc54f0d6ad5ac7a1a3cb1d14866da64584bdae                        1.7s
 => => extracting sha256:9921b3a2f2aee67761546515abdc85aaf75f6ea0a65626432004e37a1e681d37                        0.0s
 => => extracting sha256:6c1b169e599027b872b8ce4f1ca9ba96faea75bad1210d73c46db7affe3ca2b6                        0.0s
 => [worker go-base 1/3] FROM docker.io/library/golang:1.24@sha256:ef5b4be1f94b36c90385abd9b6b4f201723ae28e71a  20.7s
 => => resolve docker.io/library/golang:1.24@sha256:ef5b4be1f94b36c90385abd9b6b4f201723ae28e71acacb76d00687333c  0.0s
 => => sha256:e69f856eb0b00678cde2918ba2e13b74c5de0925a20ce99826e34815bc974251 2.32kB / 2.32kB                   0.0s
 => => sha256:27480458d8967d60bc8c3be79c48a14c6586d5a40e806d5b68132d500a57db0a 2.82kB / 2.82kB                   0.0s
 => => sha256:ef5b4be1f94b36c90385abd9b6b4f201723ae28e71acacb76d00687333c17282 9.74kB / 9.74kB                   0.0s
 => => sha256:6fbab1970a5a8545cb921278645cd2e79f4eb23c4bdfb714bef2fdf569acddd0 48.34MB / 48.34MB                 3.5s
 => => sha256:e4b341315eac0ea1ad859055038b69990fff352cc7f160586e6a94f1b126675d 23.56MB / 23.56MB                 2.7s
 => => sha256:1de51daaef2003ecaec3c73f5ef373c01bb10f38b5ec85db7d9077efa7231264 64.36MB / 64.36MB                 3.8s
 => => sha256:9e9120ca78766d83c8bf471f4ebcf188411560b50a1ea974defebed9817214bc 86.43MB / 86.43MB                 7.1s
 => => extracting sha256:6fbab1970a5a8545cb921278645cd2e79f4eb23c4bdfb714bef2fdf569acddd0                        1.9s
 => => sha256:c935bad878b3741f10814aeb149f0e6cee7191c12a56261426a2bc9b1ef4a025 75.23MB / 75.23MB                 7.1s
 => => sha256:62e58eb2c5a3cd40f4e9faba0574aba67f5ec5fa9869879c268fcabfa8805233 126B / 126B                       4.3s
 => => sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 32B / 32B                         4.7s
 => => extracting sha256:e4b341315eac0ea1ad859055038b69990fff352cc7f160586e6a94f1b126675d                        0.5s
 => => extracting sha256:1de51daaef2003ecaec3c73f5ef373c01bb10f38b5ec85db7d9077efa7231264                        2.4s
 => => extracting sha256:9e9120ca78766d83c8bf471f4ebcf188411560b50a1ea974defebed9817214bc                        2.1s
 => => extracting sha256:c935bad878b3741f10814aeb149f0e6cee7191c12a56261426a2bc9b1ef4a025                        9.4s
 => => extracting sha256:62e58eb2c5a3cd40f4e9faba0574aba67f5ec5fa9869879c268fcabfa8805233                        0.0s
 => => extracting sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1                        0.0s
 => [worker rust-base 1/7] FROM docker.io/library/rust:1-slim@sha256:38bc5a86d998772d4aec2348656ed21438d20fcdc  19.7s
 => => resolve docker.io/library/rust:1-slim@sha256:38bc5a86d998772d4aec2348656ed21438d20fcdce2795b56ca434cf214  0.0s
 => => sha256:38bc5a86d998772d4aec2348656ed21438d20fcdce2795b56ca434cf21430d89 7.80kB / 7.80kB                   0.0s
 => => sha256:93717e495a1029ba94b9b4a5768cf14d5376077d26cfad3354cbe70be27c2b1d 1.37kB / 1.37kB                   0.0s
 => => sha256:3e50f04c5161f9c0c00f1b3b09eb1073977a44dca86f9637ae3cbbcc4fcf7b95 2.96kB / 2.96kB                   0.0s
 => => sha256:8220606a7fe71525993be39318b383ae65f7d403a66defbfc5d3d930015b9895 240.10MB / 240.10MB              12.4s
 => => extracting sha256:8220606a7fe71525993be39318b383ae65f7d403a66defbfc5d3d930015b9895                        6.8s
 => [worker internal] load build context                                                                         0.3s
 => => transferring context: 9.50MB                                                                              0.3s
 => [playwright-service 2/7] WORKDIR /usr/src/app                                                                0.2s
 => [playwright-service 3/7] COPY package*.json ./                                                               0.1s
 => [playwright-service 4/7] RUN npm install                                                                     8.1s
 => [api base 2/4] RUN corepack enable                                                                           0.5s
 => [worker base 3/4] COPY . /app                                                                                0.1s
 => [api base 4/4] WORKDIR /app                                                                                  0.0s
 => [worker build 1/1] RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install && pnpm run build         24.8s
 => [worker prod-deps 1/1] RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockf  9.7s
 => [playwright-service 5/7] COPY . .                                                                            0.0s
 => [playwright-service 6/7] RUN npx playwright install --with-deps                                             80.0s
 => [worker rust-base 2/7] COPY sharedLibs/html-transformer /app/sharedLibs/html-transformer                     0.2s
 => [worker rust-base 3/7] COPY sharedLibs/pdf-parser /app/sharedLibs/pdf-parser                                 0.1s
 => [api rust-base 4/7] COPY sharedLibs/crawler /app/sharedLibs/crawler                                          0.1s
 => [worker rust-base 5/7] RUN cd /app/sharedLibs/html-transformer &&     cargo build --release &&     chmod +  14.5s
 => [api go-base 2/3] COPY sharedLibs/go-html-to-md /app/sharedLibs/go-html-to-md                                0.1s
 => [api go-base 3/3] RUN cd /app/sharedLibs/go-html-to-md &&     go mod tidy &&     go build -o html-to-markdo  8.8s
 => [api rust-base 6/7] RUN cd /app/sharedLibs/pdf-parser &&     cargo build --release &&     chmod +x target/  10.9s
 => [worker stage-5 1/8] COPY --from=build /app/dist /app/dist                                                   0.1s
 => [api stage-5 2/8] COPY --from=prod-deps /app/node_modules /app/node_modules                                  7.6s
 => [worker stage-5 3/8] COPY --from=go-base /app/sharedLibs/go-html-to-md/html-to-markdown.so /app/sharedLibs/  0.1s
 => [worker rust-base 7/7] RUN cd /app/sharedLibs/crawler &&     cargo build --release &&     chmod +x target/r  7.4s
 => [worker stage-5 4/8] COPY --from=rust-base /app/sharedLibs/html-transformer/target/release/libhtml_transfor  0.0s
 => [api stage-5 5/8] COPY --from=rust-base /app/sharedLibs/pdf-parser/target/release/libpdf_parser.so /app/sha  0.0s
 => [worker stage-5 6/8] COPY --from=rust-base /app/sharedLibs/crawler/target/release/libcrawler.so /app/shared  0.0s
 => [api stage-5 7/8] RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*                7.3s
 => [worker stage-5 8/8] RUN sed -i 's/\r$//' /app/docker-entrypoint.sh                                          0.2s
 => [api] exporting to image                                                                                     2.4s
 => => exporting layers                                                                                          2.4s
 => => writing image sha256:d53c6f19faca4d184e075a6cdf8cfb1e6e905faf58fbeaa2289a8a55f94825e2                     0.0s
 => => naming to docker.io/library/firecrawl-api                                                                 0.0s
 => [worker] exporting to image                                                                                  2.4s
 => => exporting layers                                                                                          2.4s
 => => writing image sha256:d53c6f19faca4d184e075a6cdf8cfb1e6e905faf58fbeaa2289a8a55f94825e2                     0.0s
 => => naming to docker.io/library/firecrawl-worker                                                              0.0s
 => [api] resolving provenance for metadata file                                                                 0.0s
 => [worker] resolving provenance for metadata file                                                              0.0s
 => [playwright-service 7/7] RUN npm run build                                                                   1.4s
 => [playwright-service] exporting to image                                                                      4.7s
 => => exporting layers                                                                                          4.7s
 => => writing image sha256:cf6063fc3bc7f11b838fef6d7445f5ab183a3501e72466ff83be92ddcd93c355                     0.0s
 => => naming to docker.io/library/firecrawl-playwright-service                                                  0.0s
 => [playwright-service] resolving provenance for metadata file                                                  0.0s
[+] Building 3/3
 ✔ playwright-service  Built                                                                                     0.0s
 ✔ api                 Built                                                                                     0.0s
 ✔ worker              Built
しょっさんしょっさん
docker compose up -d
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "BLOCK_MEDIA" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENGINES" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_HOST" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_SERVER" variable is not set. Defaulting to a blank string.
WARN[0000] The "OLLAMA_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_USERNAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_CATEGORIES" variable is not set. Defaulting to a blank string.
WARN[0000] The "PROXY_PASSWORD" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_BASE_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_SERVICE_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SELF_HOSTED_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
WARN[0000] The "LOGGING_LEVEL" variable is not set. Defaulting to a blank string.
WARN[0000] The "MODEL_EMBEDDING_NAME" variable is not set. Defaulting to a blank string.
WARN[0000] The "SERPER_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "OPENAI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARCHAPI_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SEARXNG_ENDPOINT" variable is not set. Defaulting to a blank string.
WARN[0000] The "POSTHOG_API_KEY" variable is not set. Defaulting to a blank string.
WARN[0000] The "SUPABASE_ANON_TOKEN" variable is not set. Defaulting to a blank string.
WARN[0000] The "SLACK_WEBHOOK_URL" variable is not set. Defaulting to a blank string.
[+] Running 8/8
 ✔ redis Pulled                                                                                                  4.8s
   ✔ d06c6b665c9b Already exists                                                                                 0.0s
   ✔ 1f864ff0defe Already exists                                                                                 0.0s
   ✔ e0bf0f9dd82c Pull complete                                                                                  0.9s
   ✔ 1712a140f451 Pull complete                                                                                  1.4s
   ✔ 13e523d4b1dd Pull complete                                                                                  1.4s
   ✔ 4f4fb700ef54 Pull complete                                                                                  1.6s
   ✔ 0870ebfafcec Pull complete                                                                                  1.7s
[+] Running 5/5
 ✔ Network firecrawl_backend                 Created                                                             0.0s
 ✔ Container firecrawl-playwright-service-1  Started                                                             0.3s
 ✔ Container firecrawl-redis-1               Started                                                             0.3s
 ✔ Container firecrawl-api-1                 Started                                                             0.3s
 ✔ Container firecrawl-worker-1              Started                                                             0.3s
このスクラップは2ヶ月前にクローズされました