Skip to content

Commit cddb879

Browse files
authored
Merge pull request #1172 from merico-dev/fix-release
fix: remove build section from release yml
2 parents 4d13fb1 + d5dc660 commit cddb879

File tree

2 files changed

+92
-9
lines changed

2 files changed

+92
-9
lines changed

releases/lake-v0.7.0/docker-compose.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ services:
1616

1717
grafana:
1818
image: mericodev/grafana:v0.7.0
19-
build:
20-
context: grafana/
2119
ports:
2220
- 3002:3000
2321
volumes:
@@ -37,11 +35,6 @@ services:
3735

3836
devlake:
3937
image: mericodev/lake:v0.7.0
40-
build:
41-
context: "."
42-
args:
43-
HTTPS_PROXY: "${HTTPS_PROXY}"
44-
GOPROXY: "${GOPROXY}"
4538
ports:
4639
- 127.0.0.1:8080:8080
4740
restart: always
@@ -52,8 +45,6 @@ services:
5245

5346
config-ui:
5447
image: mericodev/config-ui:v0.7.0
55-
build:
56-
context: "config-ui"
5748
ports:
5849
- 127.0.0.1:4000:80
5950
env_file:

releases/lake-v0.7.0/env.example

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
#############
2+
# Lake core #
3+
#############
4+
5+
# Lake plugin dir, absolute path or relative path
6+
PLUGIN_DIR=bin/plugins
7+
8+
# Lake Database Connection String
9+
DB_URL=merico:merico@tcp(mysql:3306)/lake?charset=utf8mb4&parseTime=True
10+
11+
# Lake REST API
12+
PORT=:8080
13+
MODE=debug
14+
15+
NOTIFICATION_ENDPOINT=
16+
NOTIFICATION_SECRET=
17+
18+
########################
19+
# Docker configuration #
20+
########################
21+
22+
COMPOSE_PROFILES=user
23+
24+
######################
25+
# Jira configuration #
26+
######################
27+
28+
# Jira configuration has been migrated into MySQL #
29+
30+
########################
31+
# Gitlab configuration #
32+
########################
33+
34+
GITLAB_ENDPOINT=https://gitlab.com/api/v4/
35+
GITLAB_AUTH=
36+
37+
##########################
38+
# Jira <> Gitlab mapping #
39+
##########################
40+
41+
# Lake maintains a many-to-many relationship between Jira boards and Gitlab projects
42+
# Format:
43+
# JIRA_BOARD_GITLAB_PROJECTS=JIRA_BOARD_ID1:GITLAB_PROJECT_ID1,PROJECT_ID2;JIRA_BOARD_ID2:...
44+
JIRA_BOARD_GITLAB_PROJECTS=
45+
46+
#########################
47+
# Jenkins configuration #
48+
#########################
49+
50+
JENKINS_ENDPOINT=
51+
JENKINS_USERNAME=
52+
JENKINS_PASSWORD=
53+
54+
#########################
55+
# Feishu configuration #
56+
#########################
57+
58+
FEISHU_APPID=
59+
FEISHU_APPSCRECT=
60+
61+
########################
62+
# GitHub configuration #
63+
########################
64+
65+
GITHUB_ENDPOINT=https://api.github.com/
66+
GITHUB_AUTH=***
67+
GITHUB_PROXY=
68+
# GITHUB_PR_TYPE=type/(.*)$ the program will extract the value in (), in this example, you will get "refactor" from "type/refactor"
69+
GITHUB_PR_TYPE='type/(.*)$'
70+
# GITHUB_PR_COMPONENT=component/(.*)$ the program will extract the value in (), in this example, you will get "plugins" from "component/plugins"
71+
GITHUB_PR_COMPONENT='component/(.*)$'
72+
# GITHUB_ISSUE_SEVERITY=severity/(.*)$ the program will extract the value in (), in this example, you will get "refactor" from "type/refactor"
73+
GITHUB_ISSUE_SEVERITY='severity/(.*)$'
74+
# GITHUB_ISSUE_COMPONENT=component/(.*)$ the program will extract the value in (), in this example, you will get "refactor" from "type/refactor"
75+
GITHUB_ISSUE_COMPONENT='component/(.*)$'
76+
GITHUB_ISSUE_PRIORITY='^(highest|high|medium|low)$'
77+
GITHUB_ISSUE_TYPE_BUG='^(bug|failure|error)$'
78+
GITHUB_ISSUE_TYPE_REQUIREMENT='^(feat|feature|proposal|requirement)$'
79+
GITHUB_ISSUE_TYPE_INCIDENT=
80+
81+
##########################
82+
# ConfigUI configuration #
83+
##########################
84+
DEVLAKE_ENDPOINT=devlake:8080
85+
GRAFANA_ENDPOINT=http://localhost:3002
86+
87+
##########################
88+
# AE (Merico-Analysis-Engine) configuration #
89+
##########################
90+
AE_APP_ID=
91+
AE_SECRET_KEY=
92+
AE_ENDPOINT=

0 commit comments

Comments
 (0)