Sibyx / archlinuxarm-docker

Arch Linux ARM Docker images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic Arch Linux ARM Docker images Build and Deploy

Docker images for Arch Linux ARM on AArch32 (ARMv7-A) and AArch64 (ARMv8-A). Built using native pacman and Docker multi-stage builds. Builds weekly by Travis CI on publicly visible infrastructure using Qemu emulation.

Running the images

The images are on Docker Hub. Use the convenient docker run:

docker run --rm -ti agners/archlinuxarm

Instead of using the multi-arch container above, you can also get the architecture specific image directly:

docker run --rm -ti agners/archlinuxarm-arm32v7

Tags

Tag Update Type Description
latest weekly minimal minimal Arch Linux ARM with pacman support

Layer structure

The image is generated from a freshly built pacman rootfs. Pacman has configured to delete man pages and clean the package cache after installation to keep images small.

Issues and improvements

If you want to contribute, get to the issues-section of this repository.

Common hurdles

Setting the timezone

Simply add the TZ environment-variable and define it with a valid timezone-value.

docker run -e TZ=Europe/Berlin agners/archlinuxarm

Building it yourself

Prerequisites

  • Docker with experimental mode on (required for squash)

Building

  • Prepare binfmt use with Qemu user mode using docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
  • Run BUILD_ARCH=<arch> DOCKER_ORG=<your_docker_org> ./build to build
    • Use BUILD_ARCH=arm32v7 for ARMv7 Aarch32
    • Use BUILD_ARCH=arm64v8 for ARMv8 Aarch64

If you want to push the images, run DOCKER_ORG=<your_docker_org> ./push.

Building from scratch

Since the image depends on itself, the question which arise is how this all started. The initial containers have been created using the tarballs provided by the Arch Linux ARM project. I used the following steps to bootstrap for each architecture:

sudo tar xvzf ArchLinuxARM-armv7-latest.tar.gz -C tmp-arch
sudo tar cf ArchLinuxARM-armv7-latest.tar -C tmp-arch/ .
docker import ArchLinuxARM-armv7-latest.tar agners/armv7-archlinux:latest

Credits

Ideas have been taken from already existing Docker files for Arch Linux. However, this repository takes a slightly different approach to create images.

About

Arch Linux ARM Docker images

License:MIT License


Languages

Language:Shell 100.0%