docs(docker compose installation) : add pull command to avoid errors when installing superset using docker compose. fixes #17712 (#18196)

Co-authored-by: asarb <asarb@expediagroup.com>
This commit is contained in:
Anca Sarb 2022-01-28 10:52:16 +00:00 committed by GitHub
parent 84db896797
commit b2bfb92cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -62,6 +62,7 @@ docker-compose up
The other option is to start Superset via Docker Compose is using the recipe in `docker-compose-non-dev.yml`, which will use pre-built frontend assets and skip the building of front-end assets:
```
docker-compose -f docker-compose-non-dev.yml pull
docker-compose -f docker-compose-non-dev.yml up
```

View File

@ -60,7 +60,11 @@ Navigate to the folder you created in step 1:
$ cd superset
```
Then, run the following command:
Then, run the following commands:
```bash
$ docker-compose -f docker-compose-non-dev.yml pull
```
```bash
$ docker-compose -f docker-compose-non-dev.yml up