Is redis-cli available in a form of a docker container?

There is a docker server implermentation
docker run -p 6379:6379 --name redis-redisjson redislabs/rejson:latest
but is there a similar container with the redis -cli ?
Thank you

There are plenty of containers (prod ready) that is available from docker hub:

https://hub.docker.com/search?q=redis&type=image

If you just need the redis-cli with a lightweight image for example you can try:

docker run --rm --name redis-cli -it goodsmileduck/redis-cli redis-cli -h hostname -p 6379 ping

If you are looking to just launch RedisJSON with Docker:

docker run -p 6379:6379 --name redis-redisjson redislabs/rejson:latest