Last active
September 9, 2019 10:03
-
-
Save AmreeshTyagi/47acd1a0392368f7c2a8573131aeefda to your computer and use it in GitHub Desktop.
redis web client & server for development & testing using redis-commander
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: | |
container_name: redis | |
hostname: redis | |
image: redis | |
redis-commander: | |
container_name: redis-commander | |
hostname: redis-commander | |
image: rediscommander/redis-commander:latest | |
restart: always | |
environment: | |
- REDIS_HOSTS=local:redis:6379 | |
ports: | |
- "8081:8081" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment