Merge pull request #6467 from influxdata/fix/6432-update-docker-compose-v2-commands
Fix #6432: Update docker-compose to docker compose commandsRetrypull/6331/head
commit
856c40be00
|
|
@ -52,15 +52,15 @@ stored in an InfluxDB database.
|
||||||
|
|
||||||
### Install prerequisites for Superset and Flight SQL
|
### Install prerequisites for Superset and Flight SQL
|
||||||
|
|
||||||
We recommend using **Docker and docker-compose** to run Superset.
|
We recommend using **Docker and Docker Compose** to run Superset.
|
||||||
To set up Superset to run in Docker containers with Flight SQL, follow these steps:
|
To set up Superset to run in Docker containers with Flight SQL, follow these steps:
|
||||||
|
|
||||||
> [!Warning]
|
> [!Warning]
|
||||||
> **Superset** is not officially supported on Windows. For more information about running Superset with
|
> **Superset** is not officially supported on Windows. For more information about running Superset with
|
||||||
> Windows and Docker, see the
|
> Windows and Docker, see the
|
||||||
> [Superset documentation](https://superset.apache.org/docs/installation/installing-superset-using-docker-compose#1-install-a-docker-engine-and-docker-compose).
|
> [Superset documentation](https://superset.apache.org/docs/installation/docker-compose).
|
||||||
|
|
||||||
1. Follow the instructions to download and install Docker and docker-compose for your system:
|
1. Follow the instructions to download and install Docker and Docker Compose for your system:
|
||||||
|
|
||||||
- **macOS**: [Install Docker for macOS](https://docs.docker.com/desktop/install/mac-install/)
|
- **macOS**: [Install Docker for macOS](https://docs.docker.com/desktop/install/mac-install/)
|
||||||
- **Linux**: [Install Docker for Linux](https://docs.docker.com/desktop/install/linux-install/)
|
- **Linux**: [Install Docker for Linux](https://docs.docker.com/desktop/install/linux-install/)
|
||||||
|
|
@ -154,7 +154,7 @@ pip3 install flightsql-dbapi
|
||||||
3. Use the `docker-compose pull` command to fetch dependencies for the Docker containers.
|
3. Use the `docker-compose pull` command to fetch dependencies for the Docker containers.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker-compose -f docker-compose-non-dev.yml pull
|
docker compose -f docker-compose-non-dev.yml pull
|
||||||
```
|
```
|
||||||
|
|
||||||
The process might take several seconds to complete.
|
The process might take several seconds to complete.
|
||||||
|
|
@ -165,7 +165,7 @@ pip3 install flightsql-dbapi
|
||||||
To start the containers and run Superset, enter the `docker-compose up` command and pass the `-f` flag with the setup file name:
|
To start the containers and run Superset, enter the `docker-compose up` command and pass the `-f` flag with the setup file name:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker-compose -f docker-compose-non-dev.yml up
|
docker compose -f docker-compose-non-dev.yml up
|
||||||
```
|
```
|
||||||
|
|
||||||
This might take several seconds to complete.
|
This might take several seconds to complete.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue