Skip to content

Commit 0eb1096

Browse files
authored
Fix Outdated Information and add Information regarding docker compose down to Quickstart (#1497)
* Fix Outdated Information and Add Information regarding docker compose down to Quickstart * Revision 2 * Remove shutdown from README * typo
1 parent b1c7d2b commit 0eb1096

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

site/content/in-dev/unreleased/getting-started/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cd ~/polaris
3636
:polaris-quarkus-admin:assemble --rerun \
3737
-Dquarkus.container-image.tag=postgres-latest \
3838
-Dquarkus.container-image.build=true
39-
docker compose -f getting-started/eclipselink/docker-compose.yml up
39+
docker compose -f getting-started/eclipselink/docker-compose-postgres.yml -f getting-started/eclipselink/docker-compose-bootstrap-db.yml -f getting-started/eclipselink/docker-compose.yml up
4040
```
4141

4242
You should see output for some time as Polaris, Spark, and Trino build and start up. Eventually, you won’t see any more logs and see some logs relating to Spark, resembling the following:
@@ -55,7 +55,7 @@ export CLIENT_ID=root
5555
export CLIENT_SECRET=s3cr3t
5656
```
5757

58-
The Docker image pre-configures a sample catalog called `polaris_demo` that uses a local file system.
58+
The Docker image pre-configures a sample catalog called `quickstart_catalog` that uses a local file system.
5959

6060
## Running Polaris as a Standalone Process
6161

site/content/in-dev/unreleased/getting-started/using-polaris.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,5 +303,9 @@ curl -v http://127.0.0.1:8181/api/management/v1/catalogs/quickstart_catalog -H "
303303
## Next Steps
304304
* Visit [Configuring Polaris for Production]({{% relref "../configuring-polaris-for-production" %}}).
305305
* A Getting Started experience for using Spark with Jupyter Notebooks is documented [here](https://github.com/apache/polaris/blob/main/getting-started/spark/README.md).
306+
* To shut down a locally-deployed Polaris server and clean up all related Docker containers, run the command listed below. Cloud Deployments have their respective termination commands on their Deployment page, while Polaris running on Gradle will terminate when the Gradle process terminates.
307+
```shell
308+
docker compose -f getting-started/eclipselink/docker-compose-postgres.yml -f getting-started/eclipselink/docker-compose-bootstrap-db.yml -f getting-started/eclipselink/docker-compose.yml down
309+
```
306310

307311

0 commit comments

Comments
 (0)