mirror of
https://github.com/moby/moby.git
synced 2026-08-09 17:39:58 +00:00
The `-g` / `--graph` options were soft deprecated in favor of `--data-root` in261ef1fa27(v17.05.0) and at the time considered to not be removed. However, with the move towards containerd snapshotters, having these options around adds additional complexity to handle fallbacks for deprecated (and hidden) flags, so completing the deprecation. With this patch: dockerd --graph=/var/lib/docker --validate Flag --graph has been deprecated, Use --data-root instead unable to configure the Docker daemon with file /etc/docker/daemon.json: merged configuration validation from file and command line flags failed: the "graph" config file option is deprecated; use "data-root" instead mkdir -p /etc/docker echo '{"graph":"/var/lib/docker"}' > /etc/docker/daemon.json dockerd --validate unable to configure the Docker daemon with file /etc/docker/daemon.json: merged configuration validation from file and command line flags failed: the "graph" config file option is deprecated; use "data-root" instead Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commitb58de39ca7) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>