Skip to content

Instantly share code, notes, and snippets.

@khromov
Created August 24, 2021 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khromov/8dbd8c41ffdbdd51bcee98971786c3c7 to your computer and use it in GitHub Desktop.
Save khromov/8dbd8c41ffdbdd51bcee98971786c3c7 to your computer and use it in GitHub Desktop.
docker-compose file for Redis with persistence
version: "3"
services:
redis:
image: "redis:6.2-alpine"
command: sh -c "redis-server --appendonly yes"
ports:
- "6379:6379"
volumes:
- ./redis-data:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment