disable cache persistence & env updates

This commit is contained in:
Jim Moffet
2022-06-13 21:41:59 -07:00
parent c88d6f7a6b
commit ddd13b9995
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ services:
expose:
- "6012"
adminredis:
container_name: adminredis
command: sh -c "rm -f /data/dump.rdb && redis-server --port 6379" # disable persistence
image: redis:latest
networks:

View File

@@ -18,11 +18,11 @@ ADMIN_CLIENT_ID=notify-admin
GOVUK_ALERTS_CLIENT_ID=govuk-alerts
# URL of admin app
ADMIN_BASE_URL=http://admin:6012
ADMIN_BASE_URL=http://0.0.0.0:6012
# URL of api app (on AWS this is the internal api endpoint)
API_HOST_NAME=http://dev:6011
DEV_API_HOST_NAME=http://dev:6011
API_HOST_NAME=http://0.0.0.0:6011
DEV_API_HOST_NAME=http://0.0.0.0:6011
# AWS
AWS_REGION=us-west-2