Documentation/op-guide: Fix missing docker volume commands and specifying the initial DATA_DIR usage

This commit is contained in:
Damian Myerscough 2017-10-22 22:21:46 -07:00
parent b699c7cff7
commit abc606f139

View File

@ -76,6 +76,13 @@ Use the host IP address when configuring etcd:
export NODE1=192.168.1.21 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: Run the latest version of etcd:
``` ```