2022-03-31 14:51:01 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: "redis:alpine"
|
2022-04-17 11:55:01 +00:00
|
|
|
command: redis-server --save "" --appendonly no
|
2022-03-31 14:51:01 +00:00
|
|
|
hostname: redis
|
|
|
|
ports:
|
|
|
|
- "6379:6379"
|
2024-06-05 17:36:34 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "redis-cli", "--raw", "incr", "ping" ]
|
|
|
|
interval: 1s
|
|
|
|
timeout: 3s
|
|
|
|
retries: 5
|