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?
I am nervous about using them because I already have a docker compose setup and I worry the dev container won’t match what I am expecting. So I just use the standard docker container from my compose file and call that good enough. VScode integration makes it painless enough anyway.