You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by kl...@apache.org on 2023/05/16 08:30:11 UTC

[incubator-devlake-website] branch kw-4752-rename-compose-file created (now c24c936ce8)

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

klesh pushed a change to branch kw-4752-rename-compose-file
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git


      at c24c936ce8 chore: rename docker-compose.yml to avoid misusage

This branch includes the following new commits:

     new c24c936ce8 chore: rename docker-compose.yml to avoid misusage

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-devlake-website] 01/01: chore: rename docker-compose.yml to avoid misusage

Posted by kl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

klesh pushed a commit to branch kw-4752-rename-compose-file
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git

commit c24c936ce8e37b6017d3bd1727b0179d83260b12
Author: Klesh Wong <zh...@merico.dev>
AuthorDate: Tue May 16 14:53:53 2023 +0800

    chore: rename docker-compose.yml to avoid misusage
---
 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)