Skip to content
This repository was archived by the owner on Jul 11, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,21 @@ At this point you have your standard redis instance working as you would expect

All the commands are documented in [the references.][api]

To explore RediSQL you can use the official client `redis-cli` which it will connect to the running server.

## Docker image

Moreover, also a Docker image is provide. Is sufficient to run the image `siscia/redisql`.
Moreover, also a Docker image is provide. Is sufficient to run the image `siscia/redisql` to start the Redis server with RediSQL loaded.

```
docker run -it --net host siscia/redisql
$ docker run -it --net host siscia/redisql
```

This will start a RediSQL instance and allow you to work directly with RediSQL.
The `siscia/redisql` image provides also the `redis-cli` client:

```
$ docker run -it --net host siscia/redisql redis-cli
```

## Tutorials and walkthrought

Expand Down