summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorWm Salt Hale <salt@altsalt.net>2020-12-23 14:18:08 -0800
committerWm Salt Hale <salt@altsalt.net>2020-12-29 12:49:58 -0800
commit238b8d16b7be122056e1ba5094b27e9b78672e42 (patch)
tree8a331396ffc0a6085ca80e2cf87dfd2a980cb1bd /docs
parent3cca1d7982093d9652d15c40eac693c9ee7fa19c (diff)
removed mode from secrets block, expanded docker-compose entry
Docker Compose's version of Secrets does not yet support ``uid`, ``guid``, or ``mode``.
Diffstat (limited to 'docs')
-rw-r--r--docs/docker.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/docker.rst b/docs/docker.rst
index 036ebbc9..c91cbf28 100644
--- a/docs/docker.rst
+++ b/docs/docker.rst
@@ -115,13 +115,20 @@ You will then need to copy the password file to your host machine:
and make it visible to your container by adding it to ``docker-compose.yml`` as a ``secret``:
.. code-block:: yaml
+ version: '3'
+
services:
glances:
image: nicolargo/glances:latest
+ restart: always
+ environment:
+ - GLANCES_OPT="-w --password"
+ volumes:
+ - /var/run/docker.sock:/var/run/docker.sock:ro
+ pid: host
secrets:
- source: glances_password
target: /root/.config/glances/glances.pwd
- mode: '0440'
secrets:
glances_password: