首页 > 其他 > 详细

基于docker-compose安装redis同步

时间:2021-06-08 20:16:05      阅读:18      评论:0      收藏:0      [点我收藏+]

编写yaml文件

version: ‘3.4‘
services:
  master:
    image: redis
    container_name: redis-master
    restart: always
    command: redis-server --port 6379 --requirepass 1234
#    network_mode: "host"
    ports:
      - 6379:6379

  slave1:
    image: redis
    container_name: redis-slave-1
    restart: always
    command: redis-server --slaveof 192.168.16.104 6379 --port 6380 --requirepass 1234 --masterauth 1234
#    network_mode: "host"
    ports:
      - 6380:6380


  slave2:
    image: redis
    container_name: redis-slave-2
    restart: always
    command: redis-server --slaveof 192.168.16.104 6379 --port 6381 --requirepass 1234 --masterauth 1234
#    network_mode: "host"
    ports:
      - 6381:6381

基于docker-compose安装redis同步

原文:https://www.cnblogs.com/ants_double/p/14863135.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!