From b6be4acfcc1d8801dc4250acd3701a7d3325334f Mon Sep 17 00:00:00 2001 From: Chris Swan Date: Thu, 24 Dec 2015 16:43:37 +0000 Subject: [PATCH 1/2] Fix --storage-driver example Signed-off-by: Chris Swan --- docs/articles/systemd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/systemd.md b/docs/articles/systemd.md index 4f86c5f994..135918e15c 100644 --- a/docs/articles/systemd.md +++ b/docs/articles/systemd.md @@ -98,7 +98,7 @@ directory: [Service] ExecStart= - ExecStart=/usr/bin/docker daemon -H fd:// --graph /mnt/docker-data --storage-driver btrfs + ExecStart=/usr/bin/docker daemon -H fd:// --graph /mnt/docker-data --storage-driver=overlay You can also set other environment variables in this file, for example, the `HTTP_PROXY` environment variables described below. From 5eef38d364c2d850bd98c70824a67178a44d94c0 Mon Sep 17 00:00:00 2001 From: Chris Swan Date: Thu, 24 Dec 2015 17:02:58 +0000 Subject: [PATCH 2/2] Fix --storage-driver example (and --graph) Signed-off-by: Chris Swan --- docs/articles/systemd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/systemd.md b/docs/articles/systemd.md index 135918e15c..633466dc79 100644 --- a/docs/articles/systemd.md +++ b/docs/articles/systemd.md @@ -98,7 +98,7 @@ directory: [Service] ExecStart= - ExecStart=/usr/bin/docker daemon -H fd:// --graph /mnt/docker-data --storage-driver=overlay + ExecStart=/usr/bin/docker daemon -H fd:// --graph="/mnt/docker-data" --storage-driver=overlay You can also set other environment variables in this file, for example, the `HTTP_PROXY` environment variables described below.