TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A CLI to quickly launch VSCode/cursor devcontainers

49 点作者 michidk3 个月前

6 条评论

ed_blackburn3 个月前
I am experimenting with dev containers at the moment. I am finding them very useful for setting up environments and they work as advertised. Where I am struggling is the poor support in the Jetbrain's suite and having to accommodate different editors. We need more tooling and editor plurality for dev containers to take off.
评论 #43184707 未加载
评论 #43182727 未加载
mbreese3 个月前
Authors blog post talking about this project:<p><a href="https:&#x2F;&#x2F;blog.lohr.dev&#x2F;launching-dev-containers" rel="nofollow">https:&#x2F;&#x2F;blog.lohr.dev&#x2F;launching-dev-containers</a>
bdcravens3 个月前
If you&#x27;ve already standardized on Docker Compose for development, is there an advantage to migrating to devcontainers?
评论 #43186089 未加载
amluto3 个月前
I wonder if this could be adapted to run vscode, with a devcontainer, but in a sandbox? I want to see and interact with the vscode GUI, and I want vscode to be able interact with the container, but I do not want vscode to have any access to anything else that I don&#x27;t explicitly grant. This includes my home directory and even my network.<p>One approach might be to try to put vscode into the devcontainer or into another container. But it needs a hole poked for the GUI for for someone to do the plumbing to get the GUI to run in a sandboxed browser context, and I don&#x27;t think MS makes this easy.<p>(Note that vscode has no security model. If you connect vscode&#x27;s normal frontend to a malicious backend, you are pwned, and this isn&#x27;t even considered a bug.)
hombre_fatal3 个月前
Can someone describe what it&#x27;s like to use devcontainers?<p>Is it a last resort, like if your arch is so different from your project environment that you have to go so far as to develop inside a container?<p>I hate even running local docker containers the second I want to do anything inside them. And that&#x27;s the vibe I get when I read about devcontainers despite wanting to earnestly try it out at one point (I frankly couldn&#x27;t figure it out back when I tried).
评论 #43184934 未加载
评论 #43185193 未加载
评论 #43186718 未加载
评论 #43184944 未加载
评论 #43184899 未加载
GNOMES3 个月前
Tooling looks useful, but still trying to understand Dev containers themselves.<p>Why use one of these premade container images vs using a base image, adding extra packages&#x2F;layers as needed?