Skip to content

Instantly share code, notes, and snippets.

@exaland
Last active June 5, 2021 19:50
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 exaland/054f587c814c0c956938e735aa61d060 to your computer and use it in GitHub Desktop.
Save exaland/054f587c814c0c956938e735aa61d060 to your computer and use it in GitHub Desktop.
Docker Compose for Create Redis with Redis Insight
version: '3.3"
services:
redis:
container_name: redis
image: redis:4.0.11-alping
environment:
- REDIS_PASSWORD=mypassword
- REDIS_REPLICATION_mode=master
#command
#- "--requirepass=mypassword"
redisinsight:
container_name: redisinsight
image:redislabs/redisinsight
ports:
- 8081-8001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment