Skip to content

Instantly share code, notes, and snippets.

@Rovel
Forked from Nikkely/docker-compose.yml
Created June 13, 2023 13:05
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 Rovel/b3226ee23e7cc327c55dc06f077bc0de to your computer and use it in GitHub Desktop.
Save Rovel/b3226ee23e7cc327c55dc06f077bc0de to your computer and use it in GitHub Desktop.
redis replication on docker-compose
version: '3'
services:
redis:
image: redis:5.0.0
container_name: master
ports:
- "6379:6379"
networks:
- redis-replication
redis-slave:
image: redis:5.0.0
container_name: slave
ports:
- "6380:6379"
command: redis-server --slaveof master 6379
depends_on:
- redis
networks:
- redis-replication
networks:
redis-replication:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment