dragonfly/docs/quick-start
Ryan Russell ff632b1c4b
feat(docker-compose): Add docker-compose.yml #100 (#130)
* feat(docker-compose): Add `docker-compose.yml` #100

Signed-off-by: Ryan Russell <git@ryanrussell.org>

* docs(build-from-source): Include build from source

Signed-off-by: Ryan Russell <git@ryanrussell.org>
2022-06-10 16:30:05 +03:00
..
README.md feat(docker-compose): Add docker-compose.yml #100 (#130) 2022-06-10 16:30:05 +03:00

Dragonfly

Quick Start

Starting with docker run is the simplest way to get up and running with DragonflyDB.

If you do not have docker on your machine, Install Docker before continuing.

Step 1

docker run --network=host --ulimit memlock=-1 docker.dragonflydb.io/dragonflydb/dragonfly

Dragonfly DB will answer to both http and redis requests out of the box!

You can use redis-cli to connect to localhost:6379 or open a browser and visit http://localhost:6379

Step 2

Connect with a redis client

redis-cli
127.0.0.1:6379> set hello world
OK
127.0.0.1:6379> keys *
1) "hello"
127.0.0.1:6379> get hello
"world"
127.0.0.1:6379> 

Step 3

Continue being great and build your app with the power of DragonflyDB!

More Build Options