grmvoid/redis

By grmvoid

Updated about 2 months ago

Redis is an in-memory database that persists on disk.

Image
Databases & Storage
Message Queues

17

Quick reference

Supported tags and respective Dockerfile links

How to use this image

start a redis instance
$ docker run --name redis -d grmvoid/redis:7.4.1
... via docker-compose

Example docker-compose.yml for redis:

version: '3.1'

services:
    redis:
        image: grmvoid/redis:7.4.1
        restart: always
        ports:
            - "6379:6379"

License

View license information for the software contained in this image.

Docker Pull Command

docker pull grmvoid/redis