summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2020-12-21 00:21:11 +0000
committerGitHub <noreply@github.com>2020-12-21 00:21:11 +0000
commitb3f7d00d9be365c12f4fe168999def68ddfb8411 (patch)
tree7c9fcd181726273138f893c099e30b7faf163546 /README.md
parentc4a29956318216fad3b5b168ad2809d7ef2452da (diff)
Document Redis secret (#1337)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bf3c4f4d..6985c4b1 100644
--- a/README.md
+++ b/README.md
@@ -307,7 +307,7 @@ services:
Then run `docker-compose up -d`, now you can access Nextcloud at http://localhost:8080/ from your host system.
# Docker Secrets
-As an alternative to passing sensitive information via environment variables, _FILE may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in /run/secrets/<secret_name> files. For example:
+As an alternative to passing sensitive information via environment variables, `_FILE` may be appended to the previously listed environment variables, causing the initialization script to load the values for those variables from files present in the container. In particular, this can be used to load passwords from Docker secrets stored in `/run/secrets/<secret_name>` files. For example:
```yaml
version: '3.2'
@@ -366,7 +366,7 @@ secrets:
file: ./postgres_user.txt # put postgresql username to this file
```
-Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DB`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER`.
+Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DB`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER` and `REDIS_HOST_PASSWORD`.
# Make your Nextcloud available from the internet
Until here, your Nextcloud is just available from you docker host. If you want your Nextcloud available from the internet adding SSL encryption is mandatory.