this post was submitted on 28 Jan 2024
2027 points (98.2% liked)

linuxmemes

20771 readers
1574 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 17 points 7 months ago (1 children)

This is why I like Docker. It's basically "works on my machine" as a service.

Similarly, I'm starting to really like dev containers. They're Docker containers with all the required dev tools already installed inside, and a config so that VS Code knows how to spin up a new container when you want to do dev work on the project. They use VS Code remoting - a VS Code server runs in the container and the regular VS Code desktop app connects to it.

I was recently dealing with a project that has some Ruby dev tools and it was 100x easier to deal with since they were using dev containers.

[โ€“] Tenthrow 2 points 7 months ago

Well now I need to learn all about this.