From bf2ef304e04df275936a06f513b3fe0ebdc58ae7 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Tue, 5 Sep 2023 19:22:59 +0100 Subject: [PATCH] Update readme wording --- README.md | 4 ++-- readme-vars.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3eeb3b3..a935ca0 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,9 @@ The web UI is at https://ip:8443, setup with the first run wizard. ### Setting Up Your External Database -Formally only mongodb 3.6 through 4.4 are supported, however, it has been reported that versions up to and including 7 will work. If you choose to use a newer version be aware that you will not be operating a supported configuration. +Formally only mongodb 3.6 through 4.4 are supported, however, it has been reported that newer versions will work. If you choose to use a newer version be aware that you will not be operating a supported configuration. -Create your databases using an `init-mongo.js` file with the following contents: +If you are using the [official mongodb container](https://hub.docker.com/_/mongo/), you can create your databases using an `init-mongo.js` file with the following contents: ```js db.getSiblingDB("MONGO_DBNAME").createUser({user: "MONGO_USER", pwd: "MONGO_PASS", roles: [{role: "readWrite", db: "MONGO_DBNAME"}]}); diff --git a/readme-vars.yml b/readme-vars.yml index cf3c62c..98ab57b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -59,9 +59,9 @@ app_setup_block: | ### Setting Up Your External Database - Formally only mongodb 3.6 through 4.4 are supported, however, it has been reported that versions up to and including 7 will work. If you choose to use a newer version be aware that you will not be operating a supported configuration. + Formally only mongodb 3.6 through 4.4 are supported, however, it has been reported that newer versions will work. If you choose to use a newer version be aware that you will not be operating a supported configuration. - Create your databases using an `init-mongo.js` file with the following contents: + If you are using the [official mongodb container](https://hub.docker.com/_/mongo/), you can create your databases using an `init-mongo.js` file with the following contents: ```js db.getSiblingDB("MONGO_DBNAME").createUser({user: "MONGO_USER", pwd: "MONGO_PASS", roles: [{role: "readWrite", db: "MONGO_DBNAME"}]});