mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
11 lines
199 B
YAML
11 lines
199 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
redis:
|
|
image: ${REDIS_IMAGE:-redis:alpine}
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 20s
|
|
timeout: 3s
|