You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by zk...@apache.org on 2023/05/18 03:59:38 UTC

[incubator-devlake-website] branch main updated: chore: rename docker-compose.yml to avoid misusage (#527)

This is an automated email from the ASF dual-hosted git repository.

zky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 499e4ea7c4 chore: rename docker-compose.yml to avoid misusage (#527)
499e4ea7c4 is described below

commit 499e4ea7c4ceb7d8b736bc67b1df9ae4ec74e061
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Thu May 18 11:59:34 2023 +0800

    chore: rename docker-compose.yml to avoid misusage (#527)
---
 docs/DeveloperManuals/DeveloperSetup.md | 2 +-
 docs/DeveloperManuals/E2E-Test-Guide.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/DeveloperManuals/DeveloperSetup.md b/docs/DeveloperManuals/DeveloperSetup.md
index b228880a1a..cd89830c5f 100644
--- a/docs/DeveloperManuals/DeveloperSetup.md
+++ b/docs/DeveloperManuals/DeveloperSetup.md
@@ -54,7 +54,7 @@ The following guide will walk through how to run DevLake's frontend (`config-ui`
     > Make sure the Docker daemon is running before this step.
 
     ```sh
-    docker-compose up -d mysql grafana
+    docker-compose -f docker-compose-dev.yml up -d mysql grafana
     ```
 
 7. Run `devlake` and `config-ui` in dev mode in two separate terminals:
diff --git a/docs/DeveloperManuals/E2E-Test-Guide.md b/docs/DeveloperManuals/E2E-Test-Guide.md
index 1156e4cd24..e844d5fbb1 100644
--- a/docs/DeveloperManuals/E2E-Test-Guide.md
+++ b/docs/DeveloperManuals/E2E-Test-Guide.md
@@ -67,7 +67,7 @@ After exporting, move the .csv file to `plugins/feishu/e2e/raw_tables/_raw_feish
 
 ### MySQL Select Into Outfile
 
-This is MySQL's solution for exporting query results to a file. The MySQL currently started in docker-compose.yml comes with the --security parameter, so it does not allow `select ... into outfile`. The first step is to turn off the security parameter, which is done roughly as follows.
+This is MySQL's solution for exporting query results to a file. The MySQL currently started in docker-compose-dev.yml comes with the --security parameter, so it does not allow `select ... into outfile`. The first step is to turn off the security parameter, which is done roughly as follows.
 ![origin_img_v2_c809c901-01bc-4ec9-b52a-ab4df24c376g](https://user-images.githubusercontent.com/3294100/175070770-9b7d5b75-574b-49ed-9bca-e9f611f60795.jpg)
 After closing it, use `select ... into outfile` to export the csv file. The export result is rough as follows.
 ![origin_img_v2_ccfdb260-668f-42b4-b249-6c2dd45816ag](https://user-images.githubusercontent.com/3294100/175070866-2204ae13-c058-4a16-bc20-93ab7c95f832.jpg)