this post was submitted on 01 Aug 2025
23 points (89.7% liked)
Programming
21924 readers
610 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Neat idea. Seems useful for something like a Codium server too. Keep source local but code, compile, and run(?) on the remote.
Yes, you can run it remotely too.
The biggest challenges with Docker are:
Many people think of Docker as a virtual machine, but a better way to look at it is as a security wrapper around a process.
For example, this project allows you to setup your build to store the build artefacts on your workstation while not having to install a crap ton of stuff to build it in the first place.
I use it for tools where I don't care about the tool, just the data it produces. With a symbolic link to the launch command .. see the examples .. running a process locally is indistinguishable from running it remotely.
I really like this interpetation of containers. Thanks for sharing.