summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFotis Voutsas <fotis@netdata.cloud>2023-07-03 09:41:35 +0300
committerGitHub <noreply@github.com>2023-07-03 09:41:35 +0300
commitac6eeb5d817c5aba13cd2f69699100b9154d6bdf (patch)
tree7839ba6de76c28e06776f6981db950c8ddc1fb5e
parent200a90fc49393953a27ce3b3c2437a3b9e00f3d5 (diff)
Fix wording issue in Docker READMEAncairon-patch-3
-rw-r--r--packaging/docker/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/docker/README.md b/packaging/docker/README.md
index ef7dd6de7c..ead51c5ac7 100644
--- a/packaging/docker/README.md
+++ b/packaging/docker/README.md
@@ -34,7 +34,7 @@ and unfortunately not something we can realistically work around.
You can create a new Agent container using either `docker run` or `docker-compose`. After using either method, you can
visit the Agent dashboard `http://NODE:19999`.
-Both methods create a [bind mount](https://docs.docker.com/storage/bind-mounts/) for Netdata's configuration files
+Both methods create a [volume](https://docs.docker.com/storage/volumes/) for Netdata's configuration files
_within the container_ at `/etc/netdata`. See the [configuration section](#configure-agent-containers) for details. If
you want to access the configuration files from your _host_ machine, see [host-editable
configuration](#host-editable-configuration).
@@ -193,7 +193,7 @@ to restart the container: `docker restart netdata`.
> the host system.
If you want to make your container's configuration directory accessible from the host system, you need to use a
-[volume](https://docs.docker.com/storage/bind-mounts/) rather than a bind mount. The following commands create a
+[bind mount](https://docs.docker.com/storage/bind-mounts/) rather than a volume. The following commands create a
temporary `netdata_tmp` container, which is used to populate a `netdataconfig` directory, which is then mounted inside
the container at `/etc/netdata`.