Перейти к файлу
Justin Cormack 1fd9bd2793
Merge pull request #21 from carlosedp/riscv64
Add support for riscv64
2020-01-29 13:32:38 +00:00
bin Build docker/binfmt v3.1.0 2019-05-13 13:35:30 +02:00
binfmt Add support for riscv64 2019-12-27 12:22:41 -03:00
.gitignore Build docker/binfmt v3.1.0 2019-05-13 13:35:30 +02:00
Jenkinsfile Jenkins job sign image (#14) 2019-05-20 20:38:35 +02:00
Jenkinsfile.signed Jenkins job sign image (#14) 2019-05-20 20:38:35 +02:00
Makefile Jenkins job sign image (#14) 2019-05-20 20:38:35 +02:00
README.md Fix architecture in README.md 2019-05-13 15:08:13 +02:00

README.md

docker/binfmt

Build and push the docker/binfmt image.

Build

make

This builds the docker/binfmt image with QEMU static binaries from moby/qemu and branch moby/v3.1.0.

Push

make push

This pushes the image to Docker Hub.

Test manually

make

Builds a docker/binfmt image - note the image ID.

docker run --rm --privileged imageid

This registers the new QEMU binaries in the host kernel. Test all different architectures

docker run --rm arm64v8/alpine uname -a
docker run --rm arm32v7/alpine uname -a
docker run --rm ppc64le/alpine uname -a
docker run --rm s390x/alpine uname -a