This directory contains the definition for the unikraft.org/redis:7.0
image.
To run this image, install Unikraft's companion command-line toolchain kraft
and then you can run:
kraft run -p 6379:6379 unikraft.org/redis:7.0
Once executed you will be able to view connect with the Redis client:
redis-cli -h localhost
You can test it using set/get commands:
127.0.0.1:6379> set a 1
OK
127.0.0.1:6379> get a
"1"
127.0.0.1:6379>