Skip to content

Latest commit

 

History

History

etcd

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

etcd

etcd is a distributed, reliable key-value store for the most critical data of a distributed system.

$ docker-compose up -d
$ docker-compose exec etcd bash
>>> etcdctl version
etcdctl version: 3.5.16
API version: 3.5
>>> etcdctl put foo bar
OK
>>> etcdctl get foo
foo
bar