Skip to content

Build of Nomad for Arm6l such as the Raspberry Pi Zero

License

Notifications You must be signed in to change notification settings

nicholasjackson/nomad-arm6l

Repository files navigation

nomad-arm6l

Build Status

Build of Nomad for Raspberry Pi statically linked

Automated build

This uses Scaleway to provide an ARMv7 host automatically and compile nomad.

Local build: Cross-compilation

This uses a Docker image to cross-compile nomad.

To get the binary to the host, run the following command:

docker build --pull -t nomad-arm6l .
docker run --rm nomad-arm6l cat /usr/bin/nomad > nomad

It is possible to compile a new version as well, using the following command:

docker build --pull --build-arg nomad_version="master" -t nomad-arm6l .
docker run --rm nomad-arm6l cat /usr/bin/nomad > nomad