Skip to content

Instantly share code, notes, and snippets.

@shubhammehra4
Created January 2, 2022 15:26
Show Gist options
  • Save shubhammehra4/f29652810488797cd18dacb5ec0b151a to your computer and use it in GitHub Desktop.
Save shubhammehra4/f29652810488797cd18dacb5ec0b151a to your computer and use it in GitHub Desktop.
version: "3.8"
services:
redis_container:
container_name: redis
image: redis:latest
command: redis-server --appendonly yes --requirepass admin --loglevel warning
environment:
REDIS_REPLICATION_MODE: master
ports:
- 6379:6379
volumes:
- redis_data:/data
restart: unless-stopped
volumes:
redis_data:
# Connect
# Shell : redis-cli -a admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment