This is an automated email from the ASF dual-hosted git repository.
srini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 3138091 Update index.mdx (#14990)
3138091 is described below
commit 313809104432c755102b769e6495d6119cf99c61
Author: Brian Childress <[email protected]>
AuthorDate: Sun Jun 6 12:56:14 2021 -0400
Update index.mdx (#14990)
Correcting typo
---
docs/src/pages/docs/installation/index.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/pages/docs/installation/index.mdx
b/docs/src/pages/docs/installation/index.mdx
index 6017539..81bbf60 100644
--- a/docs/src/pages/docs/installation/index.mdx
+++ b/docs/src/pages/docs/installation/index.mdx
@@ -79,7 +79,7 @@ The following is for users who want to configure how Superset
starts up in Docke
You can configure the Docker Compose settings for dev and non-dev mode with
`docker/.env` and `docker/.env-non-dev` respectively. These environment files
set the environment for most containers in the Docker Compose setup, and some
variables affect multiple containers and others only single ones.
-One important variable is `SUPERSET_LOAD_EXAMPLES` which determines whether
the `superset_init` container will load example data and visualizations into
the database and Superset. Thiese examples are quite helpful for most people,
but probably unnecessary for experienced users. The loading process can
sometimes take a few minutes and a good amount of CPU, so you may want to
disable it on a resource-constrained device.
+One important variable is `SUPERSET_LOAD_EXAMPLES` which determines whether
the `superset_init` container will load example data and visualizations into
the database and Superset. These examples are quite helpful for most people,
but probably unnecessary for experienced users. The loading process can
sometimes take a few minutes and a good amount of CPU, so you may want to
disable it on a resource-constrained device.
**Note:** Users often want to connect to other databases from Superset.
Currently, the easiest way to do this is to modify the
`docker-compose-non-dev.yml` file and add your database as a service that the
other services depend on (via `x-superset-depends-on`). Others have attempted
to set `network_mode: host` on the Superset services, but these generally break
the installation, because the configuration requires use of the Docker Compose
DNS resolver for the service names. If you have a [...]