docker-compose安装Redis

docker-compose.yml

version: "3.1"
# 管理的服务
services:
  redis:
    restart: always
    image: redis
    container_name: redis-main
    ports:
      # 端口映射
      - 6391:6379
    volumes:
      # 持久化 目录映射
      - "./redis/redis.conf:/usr/local/etc/redis/redis.conf"
      - "./redis/data:/data"
    command:
      # 执行的命令
      redis-server /usr/local/etc/redis/redis.conf

修改redis.conf

requirepass xxx密码
appendonly yes
daemonize no

你可能感兴趣的:(docker-compose安装Redis)