1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/etcd/README.md
2024-10-14 19:03:43 +08:00

21 lines
324 B
Markdown

etcd
=====
[etcd][1] is a distributed, reliable key-value store for the most critical data
of a distributed system.
```bash
$ 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
```
[1]: https://etcd.io/