Skip to content

Commit

Permalink
feat: Enable Redis persistence (closed #87)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Oct 23, 2019
1 parent f5a2292 commit 92b8ff7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deploy/redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ version: '3.5'
services:
redis:
image: ${REDIS_IMAGE}:${REDIS_TAG}
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli","ping"]
interval: 30s
Expand All @@ -18,6 +20,9 @@ services:
networks:
- kargo-network

volumes:
redis_data: {}

networks:
kargo-network:
name: ${DOCKER_NETWORK}
Expand Down

0 comments on commit 92b8ff7

Please sign in to comment.