From b8e09d13c06d90a6d05a199fb2a6df7776f52663 Mon Sep 17 00:00:00 2001 From: JAulet <51500017+jaulet@users.noreply.github.com> Date: Wed, 1 Dec 2021 18:35:17 -0500 Subject: [PATCH 1/2] Removed Dashboard Dependency on Catalog Service * Edited docker-compose.yaml to remove catalog dependency from dashboard service * Edited api/README.md to correct docker compose instructions Resolves #274 Signed-off-by: JAulet <51500017+JAulet@users.noreply.github.com> --- api/README.md | 4 ++-- quickstart/docker-compose.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/README.md b/api/README.md index 12b4f6cc..31cb0446 100644 --- a/api/README.md +++ b/api/README.md @@ -102,7 +102,7 @@ from our local source code, instead of using the pre-built Docker image `mlexcha # cd cd quickstart - docker compose --project-name no_api up minio miniosetup mysql mlx-ui + docker compose --project-name no_api up minio miniosetup mysql mlx-ui dashboard When the MLX UI is ready, the log messages should show something like this: @@ -124,7 +124,7 @@ After testing or debugging your code changes, bring down the Docker Compose stac # control + C - docker compose --project-name no_api down minio miniosetup mysql mlx-ui + docker compose --project-name no_api down Optional, to delete all data in Minio and MySQL, run the following commands: diff --git a/quickstart/docker-compose.yaml b/quickstart/docker-compose.yaml index 362a9a6f..e75d8421 100644 --- a/quickstart/docker-compose.yaml +++ b/quickstart/docker-compose.yaml @@ -109,7 +109,7 @@ services: image: curlimages/curl depends_on: - mlx-ui - - catalog + #- catalog # There is no catalog in API dev setup, so message never appears. entrypoint: ["/bin/sh","-c"] command: - | From 4745664e90265b8f92492cbceeb75d5b564c91b1 Mon Sep 17 00:00:00 2001 From: Christian Kadner Date: Fri, 3 Dec 2021 14:01:21 -0800 Subject: [PATCH 2/2] Remove catalog dependency from dashboar service We don't actually need that comment and the only actual hard dependency is the mlx-ui Signed-off-by: Christian Kadner --- quickstart/docker-compose.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/quickstart/docker-compose.yaml b/quickstart/docker-compose.yaml index e75d8421..33ba1de5 100644 --- a/quickstart/docker-compose.yaml +++ b/quickstart/docker-compose.yaml @@ -109,7 +109,6 @@ services: image: curlimages/curl depends_on: - mlx-ui - #- catalog # There is no catalog in API dev setup, so message never appears. entrypoint: ["/bin/sh","-c"] command: - |