mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add redis url to env var
This commit is contained in:
parent
8137a74f51
commit
0cf7054ce6
1 changed files with 5 additions and 0 deletions
|
|
@ -37,6 +37,10 @@ services:
|
|||
container_name: "omnivore-redis"
|
||||
ports:
|
||||
- "6379:6379"
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 15s
|
||||
timeout: 90s
|
||||
expose:
|
||||
- 6379
|
||||
|
||||
|
|
@ -66,6 +70,7 @@ services:
|
|||
- CLIENT_URL=http://localhost:3000
|
||||
- GATEWAY_URL=http://localhost:8080/api
|
||||
- CONTENT_FETCH_URL=http://content-fetch:8080/?token=some_token
|
||||
- REDIS_URL=redis://redis:6379
|
||||
depends_on:
|
||||
migrate:
|
||||
condition: service_completed_successfully
|
||||
|
|
|
|||
Loading…
Reference in a new issue