grmvoid/redis
Redis is an in-memory database that persists on disk.
17
Image based on:
alpine
Supported architectures:linux/amd64
, linux/arm64
Maintained by:
grmvoid
Where to file issues:
https://github.com/grmvoid/docker-redis/issues
Dockerfile
links$ docker run --name redis -d grmvoid/redis:7.4.1
docker-compose
Example docker-compose.yml
for redis
:
version: '3.1'
services:
redis:
image: grmvoid/redis:7.4.1
restart: always
ports:
- "6379:6379"
View license information for the software contained in this image.
docker pull grmvoid/redis