apache-5.6
(lcsbaroni/alpine/apache-5.6/Dockerfile)nginx-5.6
(lcsbaroni/alpine/nginx-5.6/Dockerfile)
A super small Docker image based on [Alpine Linux][alpine]. The image is only 5 MB and has access to a package repository that is much more complete than other BusyBox based images.
Docker images today are big. Usually much larger than they need to be. There are a lot of ways to make them smaller, but the Docker populace still jumps to the ubuntu
base image for most projects. The size savings over ubuntu
and other bases are huge:
REPOSITORY TAG IMAGE ID VIRTUAL SIZE
gliderlabs/alpine latest 157314031a17 5.03 MB
debian latest 4d6ce913b130 84.98 MB
ubuntu latest b39b81afc8ca 188.3 MB
centos latest 8efe422e6104 210 MB
There are images such as progrium/busybox
which get us very close to a minimal container and package system. But these particular BusyBox builds piggyback on the OpenWRT package index which is often lacking and not tailored towards generic everyday applications. Alpine Linux has a much more complete and up to date [package index][alpine-packages]:
This makes Alpine Linux a great image base for utilities and even production applications. [Read more about Alpine Linux here][alpine-about] and you can see how their mantra fits in right at home with Docker images.