this post was submitted on 20 Jun 2023
7 points (88.9% liked)
Programming
3347 readers
4 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
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
I don't use Docker for development. I find that it just gets in the way, slows me down, and distracts me. It might be a different experience for software stacks that I don't use. I mostly use C#, Blazor, or React Native while coding in a Windows environment. I'm quite comfortable on the Linux terminal as well, but my current professional work all targets Windows deployments.
I do use Docker for other systems that the thing I am working on needs to connect to. For example, I love MailHog for running a local email server for testing. I usually set up a Docker Compose file for a few external systems that my app needs to use and run them while I'm testing, with my app either running directly on my workstation or in a VMWare machine.
The only exception to this is when I write a Docker Desktop extension, where the container is necessary for testing.