How to rebuild go project efficiently while using Docker Compose?

Source – stackoverflow.com This may be a stupid question, but I’m new to using Docker-compose. So far, I love it… but I’m having some long build times. I have a project with several dependencies, and I need to obviously rebuild the source every time I make a change. Right now, I’m calling docker-compose build to rebuild the container, followed by a docker-compose up. The problem is: It’s rebuilding the entire container for every change I make to the source code (which

Read more