# Base Images **Repository Path**: econe/docker-base-images ## Basic Information - **Project Name**: Base Images - **Description**: Docker base images for multiarch-armhf - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Base Images for EdgeX Docker Images All images are from **multiarch/alpine:armhf-base**, so you can run containers either on arm32v6 (ARM11) and arm32v7 (Cortex-A7) devices, or simulated via QEMU user on x86 PC. 1. Register **qemu-user-static** for cross compile: ```Bash docker run --rm --privileged multiarch/qemu-user-static:register --reset ``` 2. Build images in this folder ```Bash $ make docker ``` 3. Test armhf container on your PC or embeded devices: ```Bash docker run -it --rm multiarch/alpine:armhf-edge /bin/sh -c "uname -m" ```