mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add redis back to docker compose
This commit is contained in:
parent
bcd05cc7fc
commit
8137a74f51
1 changed files with 10 additions and 0 deletions
|
|
@ -31,6 +31,14 @@ services:
|
|||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
|
||||
redis:
|
||||
image: "redis:6.0.9-alpine"
|
||||
container_name: "omnivore-redis"
|
||||
ports:
|
||||
- "6379:6379"
|
||||
expose:
|
||||
- 6379
|
||||
|
||||
api:
|
||||
build:
|
||||
|
|
@ -61,6 +69,8 @@ services:
|
|||
depends_on:
|
||||
migrate:
|
||||
condition: service_completed_successfully
|
||||
redis:
|
||||
condition: service_healthy
|
||||
|
||||
web:
|
||||
build:
|
||||
|
|
|
|||
Loading…
Reference in a new issue