summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-08-14 18:14:22 +0200
committernicolargo <nicolas@nicolargo.com>2021-08-14 18:14:22 +0200
commit84914bc4d8d7b224ce8883eb4eb5bb4a3340bfe5 (patch)
tree34ab8bc4658ec53c1210f5d02858ae6aa8c631c4
parent7abb9243818058eb0d8264d361260ad2d6673d50 (diff)
Update README file with containers images name again
-rw-r--r--README.rst18
1 files changed, 10 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 272aaf53..192c5b91 100644
--- a/README.rst
+++ b/README.rst
@@ -197,16 +197,18 @@ Get the Glances container:
Available versions on the Docker Hub repository:
-- *nicolargo/glances:3.2.3* for a basic Debian Glances 3.2.3 image version with minimal dependencies
-- *nicolargo/glances:alpine-3.2.3* for a basic Alpine Glances 3.2.3 image version with minimal dependencies
-- *nicolargo/glances:3.2.3-full* for a full Debian Glances 3.2.3 image version with all dependencies
-- *nicolargo/glances:alpine-3.2.3-full* for a full Alpine Glances 3.2.3 image version with all dependencies
+- *nicolargo/glances:latest* for a basic Debian Glances image version with minimal dependencies
+- *nicolargo/glances:alpine-latest* for a basic Alpine Glances image version with minimal dependencies
+- *nicolargo/glances:latest-full* for a full Debian Glances image version with all dependencies
+- *nicolargo/glances:alpine-latest-full* for a full Alpine Glances image version with all dependencies
-Run the container in *console mode*:
+You can also specify a version by replacing latest by 3.2.3 (for example).
+
+Run last version of Glances container in *console mode*:
.. code-block:: console
- docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it nicolargo/glances:3.2.0-full
+ docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it nicolargo/glances:latest-full
Additionally, if you want to use your own glances.conf file, you can
create your own Dockerfile:
@@ -222,7 +224,7 @@ 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:3.2.0-full
+ 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
Where \`pwd\`/glances.conf is a local directory containing your glances.conf file.
@@ -231,7 +233,7 @@ variable setting parameters for the glances startup command):
.. code-block:: console
- docker run -d --restart="always" -p 61208-61209:61208-61209 -e GLANCES_OPT="-w" -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host nicolargo/glances:3.2.0-full
+ docker run -d --restart="always" -p 61208-61209:61208-61209 -e GLANCES_OPT="-w" -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host nicolargo/glances:latest-full
GNU/Linux
---------