|
|
|
|
|
by shykes
3714 days ago
|
|
(I didn't downvote you) Disclaimer: I work at Docker. Your approach is the logical one... But Docker currently has a limitation in how it handles removing files in a build. After each build step, the intermediary state is committed as a layer, just like a git commit. So removing files in a docker build is like removing files in git: they are still taking up space in the history. The long-term solution is to support image "squashing" or "flattening" in docker-build. A less clumsy short-term solution is to build a Docker image of the build environment; then 'docker run' that image to produce the final artifact. At least that way you get rid of the dependency on the host, which keeps your build more portable (if not as convenient as a single 'docker build') |
|
For example, we have development containers, build containers and runtime containers. Runtime containers are further segmented into product demo containers, testing containers and production containers.
I just published a new article on Docker this morning: http://www.dynomitedb.com/blog/2016/04/13/docker-containers/
An important point is that the build containers produce binaries that are used in both native package managers (ex. apt) and in Docker containers.
If you're interested in seeing this in action then checkout our source on GH: https://github.com/DynomiteDB
IMHO, a well designed approach to UnionFS layers is vital to high quality container architecture.
While we're focused on container use for databases (both in-memory and on-disk), much of our approach applies equally well to application layer containers.