Skip to content

Instantly share code, notes, and snippets.

@Antardas
Created January 12, 2024 15:57
Redis Data Persistent AOF
version: '3'
services:
redis:
image: redis:latest
container_name: docs-cache
restart: on-failure
ports:
- 6379:6379
volumes:
- ./storage/redis:/data
command: redis-server --appendonly yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment