fix(firecrawl): correct Docker image registry paths

- Changed from ghcr.io/mendableai/* to ghcr.io/firecrawl/*
- Updated all three services: main API, playwright-service, and nuq-postgres
- Changed tag from v1.0.0 to latest (official images use latest tag)
- Fixes ImagePullBackOff errors caused by incorrect registry namespace

Per official Firecrawl docker-compose.yaml, images are published under
ghcr.io/firecrawl/, not ghcr.io/mendableai/
This commit is contained in:
Hermes Agent service account
2026-06-04 17:05:06 -05:00
parent c38461a6e8
commit 461aa1bc54

View File

@@ -8,13 +8,13 @@
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
image: image:
# Main Firecrawl API and Worker image # Main Firecrawl API and Worker image
repository: ghcr.io/mendableai/firecrawl repository: ghcr.io/firecrawl/firecrawl
tag: "v1.0.0" # Pinned version - update explicitly tag: "latest" # Using latest as official images don't use v1.0.0 tags
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
playwright: playwright:
repository: ghcr.io/mendableai/firecrawl/playwright-service repository: ghcr.io/firecrawl/playwright-service
tag: "v1.0.0" # Pinned version - update explicitly tag: "latest" # Using latest as official images don't use v1.0.0 tags
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
@@ -72,8 +72,8 @@ playwrightService:
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
postgres: postgres:
image: image:
repository: ghcr.io/mendableai/firecrawl/nuq-postgres repository: ghcr.io/firecrawl/nuq-postgres
tag: "v1.0.0" # Pinned version tag: "latest" # Using latest as official images don't use v1.0.0 tags
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
replicaCount: 1 replicaCount: 1