Running Alpine in a Docker Container

From Alpine Linux
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Some things you might want to know if you're running Alpine in a Docker container.

using mkinitfs

By default mkinitfs will use the running kernel to build the initfs. Since your Docker container is under some other kernel you need to specify this manually.

Alpine 3.11 and later:1 apk add linux-lts

Alpine 3.10 and earlier: apk add linux-vanilla

cat /usr/share/kernel/vanilla/kernel.release

mkinitfs 4.19.41-0-vanilla

mkinitfs `cat /usr/share/kernel/vanilla/kernel.release`

See also

References

  1. Natanael Copa, "vanilla: remove linux-vanilla. replaced by linux-lts," Alpine Linux aports repository, commit eba4f554, 12 Dec 2019, (https://git.alpinelinux.org/aports/commit/?h=3.11-stable&id=eba4f554cc53325bb37f0cca97a5dfd024582271 accessed 19 May 2022).