I have created a couple different directories on my host machine as I try to learn about Docker just to keep my dockerfiles organized. My Dockerfile I just ran looks like this:
FROM crystal/centos
MAINTAINER crystal
ADD ./rpms/test.rpm ./rpms/
RUN yum -y --nogpgcheck localinstall /rpms/test.rpm
My actual rpm is only 1 GB. But when I try to do sudo docker build -t="crystal/test" .
, I get sending build context to Docker daemon 3.5 GB. Is there something else that I'm unaware of as you continue to build Docker images? Is my memory accumulating as I build more images in my other directories on my host machine?
I fixed it by moving my Dockerfile and docker-compose.yml into a subfolder and it worked great. Apparently docker sends the current folder to the daemon and my folder was 9 gigs.
If you have a
.dockerignore
file and build context is still large, you can check what is being sent to the docker build context using The Silver Searcher:Note that some
**
patterns might not work properly.See this Github issue for additional comments: https://github.com/moby/moby/issues/16056
In my case that was when i execute with wrong
-f
arguments - without path to directory where located Dockerfiledocker build --no-cache -t nginx5 -f /home/DF/Dockerfile /home/DF/
- rightdocker build --no-cache -t nginx5 -f /home/DF/Dockerfile
- wrongI had the same issue as FreeStyler. However I was building from a directory one up from my context. So the -f arguments were correct the context was incorrect.
Building from the docker-dir the following was fine
Building from the dock-dir the the build context changed. Therefore I needed to change the context in the command. Context is given by the '.' in the command above.
The the new command from the project directory should be
Context here is given by the './base'
The Docker client sends the entire "build context" to the Docker daemon. That build context (by default) is the entire directory the
Dockerfile
is in (so, the entirerpms
tree).You can setup a
.dockerignore
file to get Docker to ignore some files. You might want to experiment with it.Alternatively, you can move your
rpms
folder one directory level above yourDockerfile
, and only symlinktest.rpm
into theDockerfile
's directory.