Merge pull request #8743 from dmyerscough/fix-example-snippet

Documentation/op-guide: Fix missing docker volume commands and specify the initial DATA_DIR
This commit is contained in:
Gyu-Ho Lee 2017-10-24 07:03:26 -07:00 committed by GitHub
commit 6277828f13

View File

@ -76,6 +76,13 @@ Use the host IP address when configuring etcd:
export NODE1=192.168.1.21
```
Configure a Docker volume to store etcd data:
```
docker volume create --name etcd-data
export DATA_DIR="etcd-data"
```
Run the latest version of etcd:
```