Fix #6432: Update docker-compose to docker compose commandsRetry

pull/6467/head
meelahme 2025-10-17 11:39:21 -07:00
parent 3b6988e12f
commit 1639bde073
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ 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 v2** 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]
@ -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.