Created
August 4, 2018 07:08
-
-
Save ferdousulhaque/9e3b40e15a47a9250e92ea03c6f67daf to your computer and use it in GitHub Desktop.
Docker Redis
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: '2' | |
services: | |
redis: | |
image: 'bitnami/redis:latest' | |
ports: | |
- "6379:6379" | |
environment: | |
- DISABLE_COMMANDS=FLUSHDB,FLUSHALL,CONFIG | |
- ALLOW_EMPTY_PASSWORD=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment