fix(compose/typesense): document dependency of api on app

This commit is contained in:
jon r 2025-04-11 12:11:23 +02:00
parent b98988f5a4
commit 5dbd079315
1 changed files with 15 additions and 8 deletions

View File

@ -3,12 +3,13 @@ networks:
web:
external: true
x-django: &django
depends_on:
x-django-depends-on: &django-depends-on
postgres:
condition: service_healthy
redis:
condition: service_healthy
x-dns: &dns
dns: 172.17.0.1
dns_search: funkwhale.test
@ -22,13 +23,19 @@ services:
extends:
file: ./compose/app.django.yml
service: api
<<: *django
depends_on:
<<: *django-depends-on
app:
condition: service_healthy
<<: *dns
worker:
extends:
file: ./compose/app.django.yml
service: worker
<<: *django
depends_on:
<<: *django-depends-on
<<: *dns
web:
extends: