/docker-redis-ssl-example

using redis ssl with docker

Primary LanguageShell

docker redis v6 / v7 with ssl example

# optionally create some new self signed certs
cd redis
bash gen-redis-certs.sh
cd ../

# using the base image layer in the redis/tls cert directory
docker build -t example/redis:v7.0.4 -f ./redis/Dockerfile ./

# start redis with ssl see: docker-redis-entrypoint.sh
docker-compose up

Also see:

If you receive an error:

Error accepting a client connection: error:14094415:SSL routines:ssl3_read_bytes:sslv3 alert certificate expired

Run the gen-redis-cert.sh script as outlined above, and rebuild the container.

connecting with TLS enabled


redis-cli --tls --cert ./redis/tls/redis.crt \
--key ./redis/tls/redis.key \
--cacert ./redis/tls/ca.crt --verbose

127.0.0.1:6379> info
# Server
redis_version:7.0.4
...