Making a Manual Connection to Redis Server
In this lesson, we will manually connect to the Redis server using a command.
Manually connecting to the Redis server
We have just started Redis using Compose and have seen from the output that it is running. However, since we are still getting familiar with Docker, let’s manually connect to the Redis server and interact with it to prove to ourselves that it really does work.
Using Redis command-line interface
A quick way to do this manually is by using the Redis command-line interface redis-cli
. We can leverage the same redis
...