Sign inSign up

flyandi/docker-inav

By flyandi

Updated almost 9 years ago

A build environment for iNavFlight using the arm build toolchain for Docker

Image
3

2.8K

flyandi/docker-inav repository overview

Build Status

Docker Build image for iNav Flight

Introduction

This docker image is intended to provide a full build environment for iNav Flight and is hosted on DockerHub.

The image contains the latest arm build toolchain.

Get Started

docker pull flyandi/docker-inav

Local Build Example

docker pull flyandi/docker-inav
git clone https://github.com/iNavFlight/inav
cd inav/
docker run --rm -v `pwd`:/home/src/ flyandi/docker-inav make TARGET=OMNIBUSF4V3

GitLab CI Build Example

GitLab CI:

stages:
  -build

build:
  stage: build
  image: flyandi/docker-inav
  script:
    - git clone https://github.com/iNavFlight/inav
    - cd inav/
    - docker run --rm -v `pwd`:/home/src/ flyandi/inav make TARGET=OMNIBUSF4V3
  artifacts:
    paths:
      - ./inav/obj
    expire_in: 1 day

Tag summary

Content type

Image

Digest

Size

407.5 MB

Last updated

almost 9 years ago

docker pull flyandi/docker-inav