This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch disable_playwright in repository https://gitbox.apache.org/repos/asf/superset.git
commit 796c3362fe58b40805321ba75199be44d9fd1a84 Author: Maxime Beauchemin <[email protected]> AuthorDate: Tue Apr 9 13:21:47 2024 -0700 add note to docs --- .../installation/installing-superset-using-docker-compose.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/docs/installation/installing-superset-using-docker-compose.mdx b/docs/docs/installation/installing-superset-using-docker-compose.mdx index e41145fb09..4193a1f0fd 100644 --- a/docs/docs/installation/installing-superset-using-docker-compose.mdx +++ b/docs/docs/installation/installing-superset-using-docker-compose.mdx @@ -112,7 +112,6 @@ with docker compose will store that data in a PostgreSQL database contained in a [volume](https://docs.docker.com/storage/volumes/), which is not backed up. Again **DO NOT USE THIS FOR PRODUCTION** - ::: You should see a wall of logging output from the containers being launched on your machine. Once @@ -127,10 +126,10 @@ can skip to the next section. You can install additional python packages and apply config overrides by following the steps mentioned in [docker/README.md](https://github.com/apache/superset/tree/master/docker#configuration) -You can configure the Docker Compose environment variables for dev and non-dev mode with -`docker/.env`. This environment file sets the environment -for most containers in the Docker Compose setup, and some variables affect multiple containers and -others only single ones. +Note that `docker/.env` sets the default environment variables for all the docker images +used by `docker-compose`, and that `docker/.env-local` can be used to override those defaults. +Also note that `docker/.env-local` is referenced in our `.gitignore`, +preventing developers from risking committing potentially sensitive configuration to the repository. One important variable is `SUPERSET_LOAD_EXAMPLES` which determines whether the `superset_init` container will populate example data and visualizations into the metadata database. These examples
