axiom-community-manager/composes/redis/redis.yml

12 lines
221 B
YAML
Raw Normal View History

2022-10-21 16:49:58 +02:00
services:
redis:
image: redis:6-alpine
restart: always
volumes:
2022-10-29 20:39:45 +02:00
- ./volumes/redis:/data
2022-10-21 16:49:58 +02:00
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 5s
timeout: 5s
retries: 10