Skip to content

Commit

Permalink
HEAT-230 Adding publishing result to redis (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrlee authored Apr 8, 2024
1 parent 7901abb commit cb14e18
Show file tree
Hide file tree
Showing 13 changed files with 558 additions and 48 deletions.
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: '3.1'
services:

redis:
image: 'redis/redis-stack:7.2.0-v9'
networks:
- hmpps
container_name: redis
environment:
- ALLOW_EMPTY_PASSWORD=yes
ports:
- '6379:6379'
healthcheck:
test: [ "CMD-SHELL", "redis-cli ping | grep PONG" ]
interval: 5s
timeout: 3s
retries: 5

networks:
hmpps:
4 changes: 4 additions & 0 deletions helm_deploy/hmpps-component-dependencies/templates/_envs.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,8 @@ env:

- name: REDIS_TLS_ENABLED
value: "true"

- name: REDIS_TLS_VERIFICATION
value: "true"

{{end -}}
Loading

0 comments on commit cb14e18

Please sign in to comment.