A basic Redis container, with the "redis-server" command as the entrypoint.
717
From https://github.com/alanctkc/docker-redis
To run a basic redis server mapped to port 6379:
$ docker run -d -p 6379:6379 alanct/redis
To password protect it:
$ docker run -d -p 6379:6379 alanct/redis --requirepass mypassword
To run on another port:
$ docker run -d -p 3000:6379 alanct/redis --requirepass mypassword
Content type
Image
Digest
sha256:388ff9348…
Size
190.2 MB
Last updated
almost 11 years ago
docker pull alanct/redis