Redis
 sql >> Database >  >> NoSQL >> Redis

La modifica della porta Redis in Docker Compose non funziona

La risposta di @Mihai mi ha aiutato a capire la soluzione. Avevo bisogno di cambiare la porta su cui è in esecuzione Redis e la porta esposta. Questo è il file di composizione Docker funzionante.

version: '3.7'
services:
  redis:
    container_name: redis
    hostname: redis
    image: sameersbn/redis:4.0.9-2
    command: --port 6380
    ports:
      - "6380:6380"
    expose:
      - "6380"
    volumes:
      - type: volume
        source: redis-data
        target: /data
    restart: always
  redis-commander:
    container_name: redis-commander
    hostname: redis-commander
    image: rediscommander/redis-commander:latest
    restart: always
    environment:
      - REDIS_HOSTS=local:redis:6380
    ports:
      - "8082:8081"
volumes:
  redis-data: {}