This commit is contained in:
sbriat 2023-02-08 16:48:25 +01:00
parent 0f14ef5d1e
commit a655ff9243
2 changed files with 16 additions and 0 deletions

View File

@ -13,3 +13,8 @@ BROKER_IMAGE=rabbitmq:3-alpine
# POSTGRES
POSTGRES_IMAGE=postgis/postgis:15-3.3
# REDIS
REDIS_IMAGE=redis:7.0-alpine
REDIS_HOST=v3-territory-redis
REDIS_PORT=6379

View File

@ -13,6 +13,17 @@ services:
depends_on:
- db
- broker
- redis
networks:
- v3-network
redis:
container_name: v3-territory-redis
image: ${REDIS_IMAGE}
ports:
- 6504:6379
env_file:
- ci/.env.ci
networks:
- v3-network