Redis
 sql >> डेटाबेस >  >> NoSQL >> Redis

डॉकर कंपोज़ में रेडिस पोर्ट बदलना काम नहीं कर रहा है

@Mihai के जवाब ने मुझे इसका समाधान निकालने में मदद की। मुझे उस पोर्ट को बदलने की जरूरत है जिस पर रेडिस चल रहा है और साथ ही एक्सपोज्ड पोर्ट भी। यह कार्यशील डॉकर कंपोज़ फ़ाइल है।

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: {}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. रेडिस स्ट्रीम सभी उपलब्ध मेमोरी का उपयोग कैसे करती है?

  2. Redis Laravel 5.1 . में प्रसारण कार्यक्रम नहीं उठा रहा है

  3. क्या मैं ब्राउज़र में चल रहे जावास्क्रिप्ट से सीधे रेडिस सर्वर से जुड़ सकता हूं?

  4. BLPOP का उपयोग करके रेडिस के साथ जॉब कतार

  5. django:redis:CommandError:आपने ASGI_APPLICATION सेट नहीं किया है, जो सर्वर को चलाने के लिए आवश्यक है