From 1afbf3929fc0c93f65079601006f3d845e01631c Mon Sep 17 00:00:00 2001 From: mrjones <8253488+mrjones-plip@users.noreply.github.com> Date: Wed, 4 Sep 2024 05:28:50 -0700 Subject: [PATCH] docker-compose -> docker compose (#1519) --- content/en/apps/guides/data/analytics/setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/apps/guides/data/analytics/setup.md b/content/en/apps/guides/data/analytics/setup.md index ccc712aa7..03119db0c 100644 --- a/content/en/apps/guides/data/analytics/setup.md +++ b/content/en/apps/guides/data/analytics/setup.md @@ -26,7 +26,7 @@ This setup involves starting couch2pg, PostgreSQL, pgAdmin, dbt, and CouchDB. Run the Docker containers and wait for every container to be up and running: ```sh -docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgres.yml -f docker-compose.yml up -d +docker compose -f docker-compose.couchdb.yml -f docker-compose.postgres.yml -f docker-compose.yml up -d ``` You can verify this command worked by running `docker ps`. It should show 5 containers running including couch2pg, dbt, PostgreSQL, CouchDB and pgAdmin. @@ -38,7 +38,7 @@ This setup involves starting couch2pg, PostgreSQL, pgAdmin and dbt. It assumes y Run the Docker containers locally and wait for every container to be up and running: ```sh -docker-compose -f docker-compose.postgres.yml -f docker-compose.yml up -d +docker compose -f docker-compose.postgres.yml -f docker-compose.yml up -d ``` You can verify this command worked by running `docker ps`. It should show 4 containers running including couch2pg, dbt, PostgreSQL, and pgAdmin. @@ -48,7 +48,7 @@ This local setup involves starting couch2pg and dbt. It assumes that CouchDB and Run the Docker containers locally and wait for every container to be up and running: ```sh -docker-compose -f docker-compose.yml up -d +docker compose -f docker-compose.yml up -d ``` You can verify this command worked by running `docker ps`. It should show 2 containers running: couch2pg and dbt.