我有一个创建多个Docker镜像的项目。我想在vscode-remote中为每个图像设置一个devcontainer,以便为每个图像旋转一个容器。

我只需要旋转并一次连接到一个容器/图像。

是否支持有多个devcontainer文件?也许像.devcontainer/devcontainer1.json.devcontainer/devcontainer2.json(假设我只有两个要使用的图像)?

每个开发容器将使用具有不同名称的图像,并且还需要不同的runArgs

最佳答案

刚刚在这里找到了。我检查了文档,因为我也对此感兴趣。并且文档指出以下内容

https://code.visualstudio.com/docs/remote/containers#_using-docker-compose
也许您想检查一下。
您的用例的文档可在以下页面中找到:
https://code.visualstudio.com/docs/remote/containers-advanced#_connecting-to-multiple-containers-at-once
您可以通过使用docker-compose.yml来执行此操作,并且需要具有以下文件夹结构:
vscode-remote - vscode-remote中的多个devcontainer-LMLPHP

关于vscode-remote - vscode-remote中的多个devcontainer,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58617041/

10-10 03:16