diff --git a/.env b/.env index 25d866e..55739f2 100644 --- a/.env +++ b/.env @@ -68,9 +68,4 @@ FORBID_REDIRECTION=false # ENABLE_SUBTASKS_BY_DEFAULT: This environment variable is used to enable or disable the execution of subtasks. # The format is as follows: plugin_name1:subtask_name1:enabled_value,plugin_name2:subtask_name2:enabled_value,plugin_name3:subtask_name3:enabled_value ########################## -# ENABLE_SUBTASKS_BY_DEFAULT="jira:collectIssueChangelogs:true,jira:extractIssueChangelogs:true,jira:convertIssueChangelogs:true,tapd:collectBugChangelogs:true,tapd:extractBugChangelogs:true,tapd:convertBugChangelogs:true,zentao:collectBugRepoCommits:true,zentao:extractBugRepoCommits:true,zentao:convertBugRepoCommits:true,zentao:collectStoryRepoCommits:true,zentao:extractStoryRepoCommits:true,zentao:convertStoryRepoCommits:true,zentao:collectTaskRepoCommits:true,zentao:extractTaskRepoCommits:true,zentao:convertTaskRepoCommits:true" - -########################## -# Set JIRA_JQL_AUTO_FULL_REFRESH to 'true' to enable automatic full refresh of the Jira plugin when JQL changes -########################## -JIRA_JQL_AUTO_FULL_REFRESH=true \ No newline at end of file +# ENABLE_SUBTASKS_BY_DEFAULT="jira:collectIssueChangelogs:true,jira:extractIssueChangelogs:true,jira:convertIssueChangelogs:true,tapd:collectBugChangelogs:true,tapd:extractBugChangelogs:true,tapd:convertBugChangelogs:true,zentao:collectBugRepoCommits:true,zentao:extractBugRepoCommits:true,zentao:convertBugRepoCommits:true,zentao:collectStoryRepoCommits:true,zentao:extractStoryRepoCommits:true,zentao:convertStoryRepoCommits:true,zentao:collectTaskRepoCommits:true,zentao:extractTaskRepoCommits:true,zentao:convertTaskRepoCommits:true" \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 259ac17..7a9b21f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,18 +23,17 @@ services: ports: - 3306:3306 environment: - MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} + MYSQL_ROOT_PASSWORD: admin MYSQL_DATABASE: lake - MYSQL_USER: ${MYSQL_USER} - MYSQL_PASSWORD: ${MYSQL_PASSWORD} + MYSQL_USER: merico + MYSQL_PASSWORD: merico TZ: UTC - ENCRYPTION_SECRET: ${ENCRYPTION_SECRET} command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin --skip-log-bin grafana: - image: devlake.docker.scarf.sh/apache/devlake-dashboard:v1.0.1 + image: devlake.docker.scarf.sh/apache/devlake-dashboard:v1.0.0 ports: - 3002:3000 volumes: @@ -44,16 +43,15 @@ services: GF_USERS_DEFAULT_THEME: "light" MYSQL_URL: mysql:3306 MYSQL_DATABASE: lake - MYSQL_USER: ${MYSQL_USER} - MYSQL_PASSWORD: ${MYSQL_PASSWORD} + MYSQL_USER: merico + MYSQL_PASSWORD: merico TZ: UTC - ENCRYPTION_SECRET: ${ENCRYPTION_SECRET} restart: always depends_on: - mysql devlake: - image: devlake.docker.scarf.sh/apache/devlake:v1.0.1 + image: devlake.docker.scarf.sh/apache/devlake:v1.0.0 ports: - 8080:8080 restart: always @@ -64,12 +62,11 @@ services: environment: LOGGING_DIR: /app/logs TZ: UTC - ENCRYPTION_SECRET: ${ENCRYPTION_SECRET} depends_on: - mysql config-ui: - image: devlake.docker.scarf.sh/apache/devlake-config-ui:v1.0.1 + image: devlake.docker.scarf.sh/apache/devlake-config-ui:v1.0.0 ports: - 4000:4000 env_file: @@ -78,9 +75,8 @@ services: DEVLAKE_ENDPOINT: devlake:8080 GRAFANA_ENDPOINT: grafana:3000 TZ: UTC - ENCRYPTION_SECRET: ${ENCRYPTION_SECRET} - ADMIN_USER: ${ADMIN_USER} - ADMIN_PASS: ${ADMIN_PASS} + #ADMIN_USER: devlake + #ADMIN_PASS: merico depends_on: - devlake