Redis image for Windows
Quick implementation of redis for docker windows. For more information see this link : redis for Windows.
You can find the pre-build docker image on Docker Hub.
Pull it :
docker pull jcreach/redis
Run it like that :
docker run --name my-redis -p 6379:6379 -d jcreach/redis:5.0.14.1-lts-nanoserver-1809
Or with a password :
docker run --name my-redis -p 6379:6379 -d jcreach/redis:5.0.14.1-lts-nanoserver-1809 --requirepass MySuperPassword
docker build --pull --rm -f "dockerfile" -t <imagee_name>:<tag> .