So, I’ve been living under a rock for the last few years and haven’t had the chance to use Docker in development. I’m working my way to get up to speed and have grasped the basics, such as Dockerfile, CLI, etc.

What is unclear to me is how to use Docker while I’m actually writing code. Do I run it inside the container and attach a debugger? Or do I develop in the traditional way (setting up my dev machine like it’s 2010) and only push the container to a registry once I’m happy with the changes?

How do you guys use it? Is there a typical way at all?

  • @CatPoop
    link
    English
    21 year ago

    I develop .NET and python on windows in Visual Studio and do the debugging there, then when it all looks stable I’ll commit to git. Then on an arm system, the docker files will pull from git to build the containers, and I’ll do the end-to-end testing there, and rely on the debug logs rather than bothering attaching a debugger.