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 <[email protected]>
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.

After closing it, use `select ... into outfile` to export the csv file. The
export result is rough as follows.
