Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 520 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 520 Bytes

#Kvarg A simple key-value service that uses redis for storage.

Can be used as a simple interface to redis but also for service discovery and shared configuration.

##Usage The following example sets a key and then retrieves it.

curl -XPUT http://127.0.0.1:4711/mykey -d value="kvarg for breakfast"
curl http://127.0.0.1:4711/mykey

##Running with docker-compose

docker-compose up -d

##Running with docker

docker run --name redis -d redis
docker run --port 4711:8080 --link redis:db sudoq/kvarg