Bruno Paz

Posts tagged with docker




Watch is a neat new feature of Docker compose that allows to monitor for file changes and automatically execute actions like sync the modified files to the container or restart the service. This feature can be a great alternative to traditional livereload solutions, and in this article I will show you a practical example of how to use it.


Docker Multi-stage builds is a great way to build smaller Docker images optimized for production use without having things like build tools in the final image. But what about development? You might need these build tools. In this article I will show you how you can have the best of both worlds with the same Dockerfile and Multi-stage builds.