mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-17 21:25:49 +02:00
13 lines
313 B
YAML
13 lines
313 B
YAML
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: osm-test-redis
|
|
ports:
|
|
- "6399:6379" # Use non-standard port to avoid conflicts with local Redis
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 10
|
|
restart: unless-stopped
|