From abc606f139bf77113b5d89bdea64ab0d047210a0 Mon Sep 17 00:00:00 2001 From: Damian Myerscough Date: Sun, 22 Oct 2017 22:21:46 -0700 Subject: [PATCH] Documentation/op-guide: Fix missing docker volume commands and specifying the initial DATA_DIR usage --- Documentation/op-guide/container.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/op-guide/container.md b/Documentation/op-guide/container.md index b9bf02b75..6a2e8dd77 100644 --- a/Documentation/op-guide/container.md +++ b/Documentation/op-guide/container.md @@ -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: ```