我想frontend
在一个隔离的容器中开发应用程序。为了设置它,我在容器文档中进行了开发。
这是我的项目:
├── .dockerignore
├── .git
│ └── foo
├── .gitignore
├── .gitmodules
├── backend
│ ├── .devcontainer.json
│ ├── .git
│ │ └── foo
│ ├── .gitignore
│ ├── Dockerfile.development
│ ├── Dockerfile.production
│ └── foo
├── docker-compose.development.yml
├── docker-compose.production.yml
├── docker-sync.yml
├── frontend
│ ├── .devcontainer.json <- Trying to run dev container with this one.
│ ├── .dockerignore
│ ├── .git
│ │ └── foo
│ ├── .gitignore
│ ├── Dockerfile.development
│ ├── Dockerfile.production
│ ├── foo
└── └── yarn.lock
前端/.devcontainer.json
{
"name": "chat-app_frontend",
"dockerComposeFile": ["../docker-compose.development.yml"],
"service": "frontend",
"shutdownAction": "none",
"extensions": ["dbaeumer.vscode-eslint"],
"workspaceFolder": "/app",
"settings": {
"git.path": "/usr/bin/git",
}
}
问题是 IDE 尝试从错误的目录打开 git 存储库。结果,在连接到 Dev Container 时,IDE Git 工具告诉我找不到存储库。
输出 -> Git 返回:
Opening repository for path='/app' failed; ex=Failed to execute git {
"exitCode": 128,
"gitErrorCode": "NotAGitRepository",
"gitCommand": "rev-parse",
"stdout": "",
"stderr": "fatal: not a git repository: /app/../.git/modules/chat-frontend\n"
我可以.git
在正在运行的容器中看到目录:
23baa3d3982d:/app# find .git
.git