Update Alpine docs (links, sizes, versions, etc)
This commit is contained in:
parent
7c357d9746
commit
07ccefc9b8
|
|
@ -1,6 +1,6 @@
|
||||||
# What is Alpine Linux?
|
# What is Alpine Linux?
|
||||||
|
|
||||||
[Alpine Linux](http://alpinelinux.org/) is a Linux distribution built around [musl libc](http://www.musl-libc.org/) and [BusyBox](http://www.busybox.net/). The image is only 5 MB in size and has access to a [package repository](http://forum.alpinelinux.org/packages) 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](https://www.alpinelinux.org/about/) and you can see how their mantra fits in right at home with Docker images.
|
[Alpine Linux](https://alpinelinux.org/) is a Linux distribution built around [musl libc](https://www.musl-libc.org/) and [BusyBox](https://www.busybox.net/). The image is only 5 MB in size and has access to a [package repository](https://pkgs.alpinelinux.org/) 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](https://alpinelinux.org/about/) and you can see how their mantra fits in right at home with Docker images.
|
||||||
|
|
||||||
%%LOGO%%
|
%%LOGO%%
|
||||||
|
|
||||||
|
|
@ -11,12 +11,12 @@
|
||||||
Use like you would any other base image:
|
Use like you would any other base image:
|
||||||
|
|
||||||
```dockerfile
|
```dockerfile
|
||||||
FROM %%IMAGE%%:3.5
|
FROM %%IMAGE%%:3.7
|
||||||
RUN apk add --no-cache mysql-client
|
RUN apk add --no-cache mysql-client
|
||||||
ENTRYPOINT ["mysql"]
|
ENTRYPOINT ["mysql"]
|
||||||
```
|
```
|
||||||
|
|
||||||
This example has a virtual image size of only 36.5MB. Compare that to our good friend Ubuntu:
|
This example has a virtual image size of only 36.8MB. Compare that to our good friend Ubuntu:
|
||||||
|
|
||||||
```dockerfile
|
```dockerfile
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
@ -26,7 +26,7 @@ RUN apt-get update \
|
||||||
ENTRYPOINT ["mysql"]
|
ENTRYPOINT ["mysql"]
|
||||||
```
|
```
|
||||||
|
|
||||||
This yields us a virtual image size of about 184MB image.
|
This yields us a virtual image size of about 179MB image.
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue