Created
August 29, 2021 09:42
-
-
Save awadhwana/93f911020ed1d825bd0770c8b4eae507 to your computer and use it in GitHub Desktop.
docker-compose for Redis with persisting storage.
This file contains hidden or 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:5.0.7-alpine | |
container_name: 'redis' | |
ports: | |
- 6379:6379 | |
volumes: | |
- data:/data | |
networks: | |
default: | |
external: | |
name: services | |
volumes: | |
data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment