# optionally create some new self signed certs
pushd redis
bash gen-redis-cert.sh
popd
export REDIS_VERSION=7.2
# start redis with ssl see: docker-redis-entrypoint.sh
docker compose up -d
Also see:
If you receive an error:
Run the gen-redis-cert.sh
script as outlined above, and rebuild the container.
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.2
...