Replated links with depends_on in dev compose file
This commit is contained in:
parent
87c4774fc9
commit
4b66ea0234
4
dev.yml
4
dev.yml
|
@ -61,7 +61,7 @@ services:
|
||||||
- "DATABASE_URL=postgresql://postgres@postgres/postgres"
|
- "DATABASE_URL=postgresql://postgres@postgres/postgres"
|
||||||
- "CACHE_URL=redis://redis:6379/0"
|
- "CACHE_URL=redis://redis:6379/0"
|
||||||
|
|
||||||
links:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
networks:
|
networks:
|
||||||
|
@ -74,7 +74,7 @@ services:
|
||||||
- .env.dev
|
- .env.dev
|
||||||
- .env
|
- .env
|
||||||
build: *backend
|
build: *backend
|
||||||
links:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
command: celery -A funkwhale_api.taskapp worker -l debug -B
|
command: celery -A funkwhale_api.taskapp worker -l debug -B
|
||||||
|
|
Loading…
Reference in New Issue