Skip to content

Commit

Permalink
docs(docker compose installation) : add pull command to avoid errors …
Browse files Browse the repository at this point in the history
…when installing superset using docker compose. fixes apache#17712 (apache#18196)

Co-authored-by: asarb <asarb@expediagroup.com>
  • Loading branch information
2 people authored and bwang221 committed Feb 10, 2022
1 parent 317cc13 commit 22aef1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 5 additions & 1 deletion docs/src/pages/docs/installation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 22aef1a

Please sign in to comment.