idoall/alpine

By idoall

Updated over 1 year ago

因为GFW原因,中国境内无法更新 tzdata 时区文件,此镜像增加了 tzdata 时区,3.10.2 版本增加了 supervisord

Image
0

3.2K

Supported tags and respective Dockerfile links

Quick reference

因为GFW原因,中国境内无法更新 tzdata 时区文件,此镜像增加了 tzdata 时区

3.10.2 版本增加了 supervisord

What is Alpine Linux?

Alpine Linux is a Linux distribution built around musl libc and BusyBox. The image is only 5 MB in size and has access to a package repository that is much more complete than other BusyBox based images. This makes Alpine Linux a great image base for utilities and even production applications. Read more about Alpine Linux here and you can see how their mantra fits in right at home with Docker images.

logo

How to use this image

Usage

Use like you would any other base image:

FROM idoall/alpine:3.9.3
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]

This example has a virtual image size of only 36.8MB. Compare that to our good friend Ubuntu:

FROM ubuntu:18.04
RUN apt-get update \
    && apt-get install -y --no-install-recommends mysql-client \
    && rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["mysql"]

This yields us a virtual image size of about 145MB image.

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-inforepository's alpine/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Docker Pull Command

docker pull idoall/alpine