docker-projects/redis/compose.yml
dominikhoebert f8e7ff5f8f added redis
2024-08-02 15:04:03 +02:00

26 lines
524 B
YAML

# https://redis.io/
# fast, open source, in-memory data structure store that can also be used as a document or vector database
name: redis
services:
redis:
image: docker.io/library/redis:7.2.5
container_name: redis
command: --save 60 1 --loglevel warning
healthcheck:
test: [ "CMD-SHELL", "redis-cli ping | grep PONG" ]
start_period: 20s
interval: 30s
retries: 5
timeout: 3s
ports:
- 6379:6379
networks:
- proxy
networks:
proxy:
external: true