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:
@@ -8,13 +8,13 @@
|
||||
# ------------------------------------------------------------------------------
|
||||
image:
|
||||
# Main Firecrawl API and Worker image
|
||||
repository: ghcr.io/mendableai/firecrawl
|
||||
tag: "v1.0.0" # Pinned version - update explicitly
|
||||
repository: ghcr.io/firecrawl/firecrawl
|
||||
tag: "latest" # Using latest as official images don't use v1.0.0 tags
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
playwright:
|
||||
repository: ghcr.io/mendableai/firecrawl/playwright-service
|
||||
tag: "v1.0.0" # Pinned version - update explicitly
|
||||
repository: ghcr.io/firecrawl/playwright-service
|
||||
tag: "latest" # Using latest as official images don't use v1.0.0 tags
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
@@ -72,8 +72,8 @@ playwrightService:
|
||||
# ------------------------------------------------------------------------------
|
||||
postgres:
|
||||
image:
|
||||
repository: ghcr.io/mendableai/firecrawl/nuq-postgres
|
||||
tag: "v1.0.0" # Pinned version
|
||||
repository: ghcr.io/firecrawl/nuq-postgres
|
||||
tag: "latest" # Using latest as official images don't use v1.0.0 tags
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
Reference in New Issue
Block a user