欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

使用Vscode结合docker进行开发的详细过程

程序员文章站 2022-06-18 18:29:43
前言使用 docker 与 vs code 可以优化整个本地开发环境,加速项目进度过程。在所有环境中使用相同的基础映像,为所有开发人员提供相同的编辑器工具,可以更容易实现标准。大型项目的团队首先必须确...

前言

使用 docker 与 vs code 可以优化整个本地开发环境,加速项目进度过程。在所有环境中使用相同的基础映像,为所有开发人员提供相同的编辑器工具,可以更容易实现标准。

大型项目的团队首先必须确保安装依赖、内核版本这些开发环境是统一的。为了解决开发环境一致性的问题,常规传统的办法就是制定开发人员遵循制定指南,但是尽管如此实际开发过程还是会遇到各种障碍。

设置环境的常规方法如下图所示:

使用Vscode结合docker进行开发的详细过程

另一种解决方案是使用所有必需的库和依赖项预先配置的开发环境,开发人员可以在容器中分拆这些库和依赖项。然后,开发人员可以在容器提供的隔离环境中工作。这极大地减少了开发人员在克隆代码库以开始处理它之间花费的时间。

使用Vscode结合docker进行开发的详细过程

除了为所有开发人员提供相同的环境之外,我们可以利用它来自动安装您的项目所需的特定扩展。这可以避免工具的不一致使用,并且省去开发人员手动安装的麻烦。

以下是通过结合使用 docker 和 vs code 的remote — containers扩展来实现的。

设置

在本文中,我将提供一个在 node 环境中运行的 javascript 应用程序示例。阅读在容器内开发以获取所有技术堆栈的详细文档。

如果您尚未安装docker和 vs code,请先安装它们。在 vs code 中安装remote — containers扩展。确保 docker 正在您的机器上运行。

转到您的项目并在根目录中创建一个名为.devcontainer的文件夹。这个新文件夹包含开发容器所需的配置文件。

在.devcontainer 中创建dockerfile和devcontainer.json并添加以下配置。

dockerfile文件如下

# specify the base image you want your dev container to use.
# you may use the same exact base image your application would use in production for consistancy.
# that could prevent surprises such as "works in local, but not in prod".

from node:14.17.0-alpine

# additionally you can install other dependencies for the environment while configuring the base image.
# in this example, i am installing git as the alpine version of node does not come with one. 

run apk update
run apk add git

devcontainer.json文件如下

{
    "name": "devcontainer reactapp",

    // provide the dev container with a dockerfile that it can use to build an image and run the container.
    "dockerfile": "dockerfile",

    // command(s) to run before the container is created.
    // in this case we are installing the node modules.
    "initializecommand": "yarn install",

    // starts the development server every time the container starts.
    // this is triggered on reopening the container as well. 
    "poststartcommand": "yarn start",

    // forward your application's port(s) running in the container to the local machine.
    "forwardports": [3000],

    // required vsc code extensions that you want to automatically install for the developers to use.
    "extensions": [
        "dbaeumer.vscode-eslint",
        "esbenp.prettier-vscode",
        "eamodio.gitlens"
    ]

    // use the devcontainer.json reference to explore all possible configurations.
    // https://code.visualstudio.com/docs/remote/devcontainerjson-reference
}

完成后,我们需要构建容器。为此,请使用 vs code 命令面板中的“在容器中打开文件夹”或“在容器中重新打开”。

使用Vscode结合docker进行开发的详细过程
使用Vscode结合docker进行开发的详细过程

这应该初始化开发容器。它拉取 docker 基础镜像,配置容器,并启动开发服务器。

使用Vscode结合docker进行开发的详细过程
使用Vscode结合docker进行开发的详细过程

结语

容器的构建和配置是一次性活动,需要时间。如果没有更改,后续重建会更快。但是,如果 devcontainer.json 或 dockerfile 发生更改,则需要重新构建以应用更改。如果您尝试直接重新打开,系统将提示您重建。

到此这篇关于使用vscode结合docker进行开发的的文章就介绍到这了,更多相关vscode结合docker开发内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!