shad-go/shopfront/docker-compose.yaml

14 lines
292 B
YAML
Raw Normal View History

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"
healthcheck:
test: ["CMD", "redis-cli", "--raw", "incr", "ping" ]
interval: 1s
timeout: 3s
retries: 5