Giter VIP home page Giter VIP logo

docker-image-testing's Introduction

Zephyr Docker Images

This repository contains the Dockerfiles for the following images:

  • Base Image (ci-base): contains only the minimal set of software needed for basic development without the toolchains.
  • CI Image (ci): contains toolchains, the zephyr sdk and additional packages needed for ci operations.
  • Developer Image (zephyr-build): includes additional tools that can be useful for Zephyr development.

Developer Docker Image

Overview

The Developer docker image includes all tools included in the CI image as well as the additional tools that can be useful for Zephyr development, such as the VNC server for testing display sample applications.

The Base docker images should be used to build custom docker images with 3rd party toolchains and tooling.

These images include the Zephyr SDK, which supports building most Zephyr targets.

Installation

Using Pre-built Developer Docker Image

The pre-built developer docker image is available on both GitHub Container Registry (ghcr.io) and DockerHub (docker.io).

GitHub Container Registry (ghcr.io)

docker run -ti -v $HOME/Work/zephyrproject:/workdir \
           ghcr.io/zephyrproject-rtos/zephyr-build:latest

DockerHub (docker.io)

docker run -ti -v $HOME/Work/zephyrproject:/workdir \
           docker.io/zephyrprojectrtos/zephyr-build:latest

Building Developer Docker Image

The developer docker image can be built using the following command:

docker build -f Dockerfile.devel --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t zephyr-build:v<tag> .

It can be used for building Zephyr samples and tests by mounting the Zephyr workspace into it:

docker run -ti -v <path to zephyr workspace>:/workdir zephyr-build:v<tag>

Usage

Building a sample application

Follow the steps below to build and run a sample application:

west build -b qemu_x86 samples/hello_world
west build -t run

Building display sample applications

It is possible to build and run the native POSIX sample applications that produce display outputs by connecting to the Docker instance using a VNC client.

In order to allow the VNC client to connect to the Docker instance, the port 5900 needs to be forwarded to the host:

docker run -ti -p 5900:5900 -v <path to zephyr workspace>:/workdir zephyr-build:v<tag>

Follow the steps below to build a display sample application for the native POSIX board:

west build -b native_posix samples/subsys/display/cfb
west build -t run

The application display output can be observed by connecting a VNC client to localhost at the port 5900. The default VNC password is zephyr.

On a Ubuntu host, this can be done by running the following command:

vncviewer localhost:5900

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.