gpt4 book ai didi

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

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章使用Vscode结合docker进行开发的详细过程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

前言

使用 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文件如下 。

  1. # Specify the base image you want your dev container to use.
  2. # You may use the same exact base image your application would use in production for consistancy.
  3. # That could prevent surprises such as "works in local, but not in PROD".
  4.  
  5. FROM node:14.17.0-alpine
  6.  
  7. # Additionally you can install other dependencies for the environment while configuring the base image.
  8. # In this example, I am installing Git as the Alpine version of node does not come with one.
  9.  
  10. RUN apk update
  11. RUN apk add git

devcontainer.json文件如下 。

  1. {
  2. "name": "DevContainer ReactApp",
  3.  
  4. // Provide the dev container with a Dockerfile that it can use to build an image and run the container.
  5. "dockerFile": "Dockerfile",
  6.  
  7. // Command(s) to run before the container is created.
  8. // In this case we are installing the node modules.
  9. "initializeCommand": "yarn install",
  10.  
  11. // Starts the development server every time the container starts.
  12. // This is triggered on reopening the container as well.
  13. "postStartCommand": "yarn start",
  14.  
  15. // Forward your application's port(s) running in the container to the local machine.
  16. "forwardPorts": [3000],
  17.  
  18. // Required VSC code extensions that you want to automatically install for the developers to use.
  19. "extensions": [
  20. "dbaeumer.vscode-eslint",
  21. "esbenp.prettier-vscode",
  22. "eamodio.gitlens"
  23. ]
  24.  
  25. // Use the devcontainer.json reference to explore all possible configurations.
  26. // https://code.visualstudio.com/docs/remote/devcontainerjson-reference
  27. }

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

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

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

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

结语

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

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

原文链接:https://blog.csdn.net/RJ0024/article/details/118568353 。

最后此篇关于使用Vscode结合docker进行开发的详细过程的文章就讲到这里了,如果你想了解更多关于使用Vscode结合docker进行开发的详细过程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com