mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
|
redis:
|
||
|
image: redis:alpine
|
||
|
restart: always
|
||
|
logging:
|
||
|
driver: journald
|
||
|
volumes:
|
||
|
- redis:/data
|
||
|
healthcheck:
|
||
|
test: ["CMD", "redis-cli", "ping"]
|
||
|
interval: 1s
|
||
|
timeout: 3s
|
||
|
retries: 30
|