1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/etcd/README.md

21 lines
323 B
Markdown
Raw Normal View History

2020-05-21 15:14:29 +08:00
etcd
=====
[etcd][1] is a distributed, reliable key-value store for the most critical data
of a distributed system.
2021-11-26 12:08:48 +08:00
```bash
$ docker-compose up -d
$ docker-compose exec etcd bash
>>> etcdctl version
etcdctl version: 3.5.1
API version: 3.5
>>> etcdctl put foo bar
OK
>>> etcdctl gut foo
foo
bar
```
2020-05-21 15:14:29 +08:00
[1]: https://etcd.io/