kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
fix(compose/typesense): document dependency of api on app
rodzic
2bd6a56ae8
commit
ff8c30c06a
23
compose.yml
23
compose.yml
|
@ -3,12 +3,13 @@ networks:
|
|||
web:
|
||||
external: true
|
||||
|
||||
x-django: &django
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
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:
|
||||
|
|
Ładowanie…
Reference in New Issue