Redis is an open source in-memory data structure store used as database, cache and message broker.
Builds of the image are available on Docker Hub.
docker pull stefaniuk/redis:latest
Alternatively you can build the image yourself.
docker build --tag stefaniuk/redis \
github.com/stefaniuk/docker-redis
Start container using:
docker run --detach --restart always \
--name redis \
--hostname redis \
--publish 6379:6379 \
stefaniuk/redis
- Authentication