Created
August 24, 2021 13:55
-
-
Save khromov/8dbd8c41ffdbdd51bcee98971786c3c7 to your computer and use it in GitHub Desktop.
docker-compose file for Redis with persistence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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