Fix search stack update recovery notes
Some checks failed
secret-guardrails / artifact-secret-scan (push) Has been cancelled
secret-guardrails / gitleaks (push) Has been cancelled

This commit is contained in:
Fizzlepoof
2026-05-26 01:11:49 +00:00
parent 2a6cd8b1fd
commit 12452bac64
2 changed files with 45 additions and 1 deletions

View File

@@ -78,8 +78,11 @@ services:
image: ghcr.io/firecrawl/playwright-service:latest
container_name: firecrawl-playwright-service
restart: unless-stopped
# Shares gluetun's network namespace; restart with gluetun updates so the namespace stays valid.
depends_on:
- search-gluetun
search-gluetun:
condition: service_started
restart: true
network_mode: "service:search-gluetun"
environment:
- PORT=3000
@@ -93,17 +96,20 @@ services:
image: ghcr.io/firecrawl/firecrawl:latest
container_name: firecrawl-api
restart: unless-stopped
# Shares gluetun's network namespace; compose should restart it when gluetun/playwright are recreated.
depends_on:
firecrawl-redis:
condition: service_started
firecrawl-playwright-service:
condition: service_started
restart: true
firecrawl-rabbitmq:
condition: service_healthy
firecrawl-postgres:
condition: service_started
search-gluetun:
condition: service_started
restart: true
network_mode: "service:search-gluetun"
environment:
- HOST=0.0.0.0