From 8012fe5546b7966f54b19bb270278a5200c071b5 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Wed, 25 May 2022 22:40:38 +0200 Subject: [PATCH] Update the documentation conerning the Docker Gances conf file --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 453f6224..7fa2fcc8 100644 --- a/README.rst +++ b/README.rst @@ -225,15 +225,15 @@ create your own Dockerfile: .. code-block:: console FROM nicolargo/glances:latest - COPY glances.conf /glances/conf/glances.conf - CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT + COPY glances.conf /etc/glances.conf + CMD python -m glances -C /etc/glances.conf $GLANCES_OPT Alternatively, you can specify something along the same lines with docker run options: .. code-block:: console - docker run -v `pwd`/glances.conf:/glances/conf/glances.conf -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -it nicolargo/glances:latest-full + docker run -v `pwd`/glances.conf:/etc/glances.conf -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -it nicolargo/glances:latest-full Where \`pwd\`/glances.conf is a local directory containing your glances.conf file.