|
|
|
|
|
by mc4ndr3
1506 days ago
|
|
Ah, my mistake. I do traffic mostly in compiled languages. But for many dynamic language apps, excluding the source code is not an option. In terms of skipping image rebuilding for local development, just run the app locally without Docker. That important option should always be available to the developer. |
|
True, it seems the author left that bit implied, given the reference to webpack-dev-server.
> In terms of skipping image rebuilding for local development, just run the app locally without Docker. That important option should always be available to the developer.
That's not really an option. Container orchestration tools like docker-compose are used to quickly launch and setup ephemeral, self-contained development environments, which include not only the services we're developing but also support services such as databases, cache, message brokers, whatever-you-need, etc. If you're working on code that's integrated into a larger system then you need to get all the missing bits up and running to check how your changes work.