Sign inSign up

easypi/webdis

By easypi

Updated 11 days ago

A Redis HTTP interface with JSON output

Image
API management
0

428

easypi/webdis repository overview

webdis

Webdis is a simple HTTP server which forwards commands to Redis and sends the reply back using a format of your choice. Accessing /COMMAND/arg0/arg1/.../argN[.ext] on Webdis executes the command on Redis and returns the response; the reply format can be changed with the optional extension (.json, .txt…)

docker-compose.yml

services:

  webdis:
    image: easypi/webdis
    ports:
      - "7379:7379"
    volumes:
      - ./data/webdis:/etc/webdis
    depends_on:
      - redis
    restart: unless-stopped

  redis:
    image: redis:8-alpine
    command: --save 900 1
    ports:
      - "127.0.0.1:6379:6379"
    volumes:
      - ./data/redis:/data
    restart: unless-stopped

Tag summary

Content type

Image

Digest

sha256:4121d8d05

Size

4.1 MB

Last updated

11 days ago

docker pull easypi/webdis