-
Notifications
You must be signed in to change notification settings - Fork 157
修复bug&优化dockerfile&优化docker-componse #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jarry126
wants to merge
1
commit into
LazyAGI:main
Choose a base branch
from
jarry126:hotfix/config-back-front
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,20 @@ | ||
| back/src/parts/data/common_datasets/common_datasets.zip | ||
| docker/volumes/ | ||
| .history/ | ||
| .idea/* | ||
| # 忽略数据库数据 | ||
| volumes/ | ||
|
|
||
| # 忽略前端依赖 | ||
| node_modules/ | ||
| .next/ | ||
| dist/ | ||
|
|
||
| # 忽略后端缓存和环境 | ||
| __pycache__/ | ||
| *.pyc | ||
| # .env | ||
| back/LazyLLM/LazyLLM-Env/ | ||
|
|
||
| # 忽略后端自带的大型数据集 | ||
| back/src/parts/data/common_datasets/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我们的私有组件在aliyuncs.com的镜像仓中都有公开存档,如果新的用户直接使用 compose 进行部署却没有手动拉取镜像则会触发 build 配置,这可能会由于网络或构建环境引出更多问题,当然在个人在linux环境下进行延展开发加 build 配置是更顺手的。
此外注意到你好像在通过开放更多的端口及固定容器名称来解决 pd 和 tikv 之间的通信问题?这个问题在最新的main中已经处理过啦,减少不必要的端口暴露,在节约端口资源消耗的同时也更有利于安全。