Browse Source

Merge pull request #386 from infosiftr/alpine

Add text to explain "alpine" variants!
yosifkit 10 years ago
parent
commit
beca643211
1 changed files with 5 additions and 0 deletions
  1. 5 0
      .template-helpers/variant-alpine.md

+ 5 - 0
.template-helpers/variant-alpine.md

@@ -0,0 +1,5 @@
+## `%%REPO%%:alpine`
+
+This image is based on the popular [Alpine Linux project](http://alpinelinux.org), available in [the `alpine` official image](https://hub.docker.com/_/alpine). Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
+
+This variant is highly recommended when final image size being as small as possible is desired. The only caveat to note is that it does use [musl libc](http://www.musl-libc.org) instead of [glibc and friends](http://www.etalabs.net/compare_libcs.html), so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice.