summaryrefslogtreecommitdiffstats
path: root/packaging/docker
diff options
context:
space:
mode:
authorFotis Voutsas <fotis@netdata.cloud>2023-07-05 11:15:26 +0300
committerGitHub <noreply@github.com>2023-07-05 11:15:26 +0300
commit82339fb66d13c132b09eb280f70704ee94c94d10 (patch)
treeb82504c6eee610e3c81aec0a09cad053b24a45a0 /packaging/docker
parent66ad65dc0c5e3ffd3f1501ff59e4e6e0e2ee4e93 (diff)
Fix wording issue in Docker README (#15298)
Diffstat (limited to 'packaging/docker')
-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`.