Halo, kalau kamu merasa tulisan saya ngebantu kamu, kamu bisa ucapkan terima kasih lewat saweria .

Hello, if you find this article helpful, you can express your gratitude through saweria .



How To

  1. Create docker-compose.yml
version: "3.7"
name: redis-insight
services:

  redis-insight:
    container_name: redis-insight-ctr
    #using specific version because it work on my server
    #image: redislabs/redisinsight:1.14.0    
    image: redislabs/redisinsight:latest
    restart: unless-stopped
    environment:
      #you can check all available env variables at
      #https://docs.redis.com/latest/ri/installing/configurations/
      - RI_HOSTNAME=0.0.0.0
      - API_PORT=8001
      - LOG_LEVEL=debug
      - SERVER_TLS=false
      #it a must if you run it behind proxy
      - RITRUSTEDORIGINS=https://redisinsight.ipang.my.id
    ports:
      - "8001:8001"
    volumes:
      - ./redisinsight:/db
    networks:
      - redis-insight-net


networks:
  redis-insight-net:
  1. If you encounter a “permission denied” error after running docker-compose up -d, you need to give the redisinsight directory the correct permissions for the container to access it using chown -R 1001 redisinsight.
Your Shlink Server Name Will Be Listed Here

Your Shlink Server Name Will Be Listed Here

  1. If you encounter an error on this page, check your environment variables, especially RITRUSTEDORIGINS. You can try disabling adblock on this page.
Try Disabling Adblock & Check Your Environment

Try Disabling Adblock & Check Your Environment

Easy To Add a New Redis Database

Easy To Add a New Redis Database

So Much Information & It’s Perform Faster Than Other Redis Web Client

So Much Information & It’s Perform Faster Than Other Redis Web Client

References:

  1. Redis Documentation