Sign inSign up

boxcutter/redis

By boxcutter

•Updated over 1 year ago

Redis is an open source key-value store that functions as a data structure server.

Image
0

1.5K

boxcutter/redis repository overview

⁠redis

This image packages releases from https://github.com/docker-library/redis⁠

⁠How to use this image

⁠start a redis instance
docker run --name some-redis --detach docker.io/boxcutter/redis:7.2-jammy
⁠start with persistent storage
docker run \
  --name some-redis
  --detach \
  docker.io/boxcutter/redis:7.2-jammy redis-server --save 60 1 --loglevel warning

There are several different persistence strategies to choose from. This one will save a snapshot of the DB every 60 seconds if at least 1 write operation was performed (it will also lead to more logs, so the loglevel option may be desirable). If persistence is enabled, data is stored in the VOLUME /data, which can be used with --volumes-from some-volume-container or -v /docker/host/dir:/data (see docs.docker volumes⁠).

For more about Redis Persistence, see http://redis.io/topics/persistence⁠..

Tag summary

Content type

Image

Digest

sha256:e7c1635eb…

Size

45.6 MB

Last updated

over 1 year ago

docker pull boxcutter/redis:7.4-noble