mirror of https://github.com/docker/docs.git
Update systemd.md (#1185)
* take a stab at fixing a broken link Signed-off-by: LRubin <lrubin@docker.com> * Update systemd.md Removed the quotes from the --graph option on line 130. Using quotes works for version 1.12 of Docker but with 1.13, Docker will create a directory named <double-quotes> under / and then create a directory of mnt/docker-data" under that directory.
This commit is contained in:
parent
ffcef3969b
commit
fd94b9c2c4
|
@ -47,4 +47,4 @@ its errors to `/proc/self/fd/2` (which is `STDERR`). See the
|
|||
## Next steps
|
||||
|
||||
- Learn about using custom [logging drivers](overview.md).
|
||||
- Learn about writing a [Dockerfile](../reference/builder.md).
|
||||
- Learn about writing a [Dockerfile](/engine/reference/builder.md).
|
||||
|
|
|
@ -127,7 +127,7 @@ directory:
|
|||
```conf
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/dockerd --graph="/mnt/docker-data" --storage-driver=overlay
|
||||
ExecStart=/usr/bin/dockerd --graph=/mnt/docker-data --storage-driver=overlay
|
||||
```
|
||||
|
||||
You can also set other environment variables in this file, for example, the
|
||||
|
|
Loading…
Reference in New Issue