takasehideki

takasehideki

Nerves development environment with Docker (and VS Code)

How do you feel that you can acquire the development environment for Nerves without affecting the host environment?:thinking: The Docker can do it with minimal steps!!:tada::tada::tada:

We want to offer the Docker solution mainly for beginners and Windows users.

Dockerfile:

Docker Hub (pre-built image)

VS Code dev-container:

Main contributions and use cases

  • If you are new to Nerves, you can easily try out its development without any affect on your host PC.
  • It will be convenient for hands-on training to provide a unified environment for all participants.
  • Even if you are already using Nerves, you can quickly try out the latest development environment. Docker does not affect your host environment.
  • The Docker Hub repository here publishes the pre-built image. You can try it right away by just pulling it (but it may not always be up to date).
  • You can also experience a better development environment by using the Visual Studio Code and its extension.

How to use with Docker alone

You need to install Docker Desktop
Docker has some requirements for host PC to be operated. See details: Windows / macOS

from Docker Hub repository

You can try the Nerves development with pre-built image.

$ docker pull nervesjp/nerves
$ docker run -it -w /workspace nervesjp/nerves
root@6e304327bd2e:/workspace# 

from GitHub repository

You can build Docker image locally, and customize it to your needs.

$ git clone https://github.com/NervesJP/docker-nerves
$ cd docker-nerves

$ docker build -t docker-nerves .
$ docker run -it -w /workspace docker-nerves 
root@9bc88d0fc7b8:/workspace# pwd
/workspace
root@9bc88d0fc7b8:/workspace# echo ${HOME}
/root
root@9bc88d0fc7b8:/workspace# ls ~/.mix/*
/root/.mix/rebar  /root/.mix/rebar3

/root/.mix/archives:
hex-0.20.6  nerves_bootstrap-1.10.0

Tips: Mount volumes on host

Since a filesystem into Docker image will disappear when an image rebuild/execute, it is useful to mount a volume on host to keep files of Nerves project. -v ${PWD}:/workspace can mount current directory on host to Docker image.

$ docker run -it -w /workspace -v ${PWD}:/workspace docker-nerves 

It is also efficient to mount Nerves related setting files, such as ~/.ssh/ and ~/.nerves. Following is an example to share setting files between host and image.

$ docker run -it -w /workspace -v ${PWD}:/workspace  -v ~/.ssh:/root/.ssh -v ~/.nerves:/root/.nerves docker-nerves 

More convenient with VS Code

Visual Studio Code is one of the most popular editor for engineers.
Remote - Containers extensions provides an awesome experience with Docker development containers.

See details:

How to use

  1. Clone the repository
git clone https://github.com/NervesJP/nerves-devcontainer
  1. Start VS Code, run the Remote-Containers: Open Folder in Container… command from the Command Palette (F1) or quick actions Status bar item, and select the project folder you cloned at Step 1.

  2. After a while, you can enjoy Nerves/Elixir development with Bash on Docker image and VS Code like as follows.

root@ebc5e1a19ae3:/workspaces/nerves-devcontainer# ls 
LICENSE.txt  README.md
root@ebc5e1a19ae3:/workspaces/nerves-devcontainer# ls ~/.mix/*
/root/.mix/rebar  /root/.mix/rebar3

/root/.mix/archives:
hex-0.20.6  nerves_bootstrap-1.10.0
root@ebc5e1a19ae3:/workspaces/nerves-devcontainer# elixir --version 
Erlang/OTP 23 [erts-11.1.3] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:1] [hipe]

Elixir 1.11.2 (compiled with Erlang/OTP 23)
root@ebc5e1a19ae3:/workspaces/nerves-devcontainer# iex 
Erlang/OTP 23 [erts-11.1.3] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:1] [hipe]

Interactive Elixir (1.11.2) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> 
  1. Note that you need to generate your SSH keys, only for the first time to login Docker image.
root@ebc5e1a19ae3:/workspaces/nerves-devcontainer# ssh-keygen -t rsa -N "" -f .ssh/id_rsa`

Tips

Manual build of Docker image locally

This repository will clone pre-built image on Docker Hub.

You can also build Docker image locally by locating above Dockerfile to ./devcontainer and uncommenting //"dockerFile": "Dockerfile", on ./devcontainer/devcontainer.json.
It means you can customize your own Nerves development environment as you want.

Mounted files about Nerves settings

Each time an image is execute, a filesystem into Docker image will disappear. So Nerves related setting directories are mounted in the current (this) directory on the host.

First directory is ${PWD}/.ssh that is expected to contain id_rsa and id_rsa.pub SSH key pairs.
They are used for the construction of Nerves firmware and secure connection to Nerves devices.
It is mounted to ~/.ssh/ on Docker image.
To generate your SSH keys, you need to operate ssh-keygen -t rsa -N "" -f /workspaces/nerves-devcontainer/.ssh/id_rsa after logging into Docker image for the first time.

Second is ${PWD}./nerves that is mounted to ~/.nerves. It keeps archives of Nerves toolchains and nerves_system_br.
If it disappeared when Docker container was restarted, you need to download archives every time you operate mix deps.get.
So we decided to mount it on this directory.
Although mix deps.get at first will take a while to unzip archives to ./nerves/artifacts due to poor performance about bindings between host and container filesystems, we think it is acceptable compared that we always have to wait when running mix deps.get for a long time.

In addition, your Nerves project can be kept on the current directory by the VS Code automatic feature.

Current limitation(s)

burn Nerves firmware to microSD card

Docker has restrict policies to avoid effecting host environment. Therefore, mix burn cannot be operated from Docker image because there is no right to access /dev to on host as a root user.

One way to burn Nerves firmware is just operating fwup on the host. fwup is an utility for constructing/burning Nerves firmware.

After installing fwup on the host according to this step, please do following command on the host terminal (e.g., PowerShell as Administrator, Terminal.app).

$ cd <your_nerves_project_dir>
$ fwup _build/${MIX_TARGET}_dev/nerves/images/<project_name>.fw

Please let us know if you have a cool solution! (issue)

Any questions, suggestions and comments (including English quality :smile: ) are welcome!!

Most Liked

jasonmjohnson

jasonmjohnson

Here’s the starter repo I just created for nix-shell:
https://github.com/jasonmj/nerves-nix-shell

jasonmjohnson

jasonmjohnson

Hi, thanks so much for this write up!

I wanted to share a similar setup I have developed for Nerves development in docker-compose:

In this repo, I’ve included a volume mapping of /dev/sdb in the docker-compose config along with the privileged option to ensure accessibility for writing to the the microSD card. You may need to use a different /dev/ address for your purposes.

In order to allow for updating the project over the air, I’ve used a script that copies ssh keys from the home folder on the host into the container and fixes permissions so that they’re ready for use with fwup inside the container.

I tried to include a bare bones description of how to use this repo in the readme, but it could certainly use some improvement. Please feel free to ask clarifying questions or comment on what I’ve got in the repo.

takasehideki

takasehideki

About the VS Code dev-container, I decided to add .hex/ as the bind directory to keep the Hex packages on the host.

Maybe it seems that I can no longer modify the original post. So please check README on GitHub for the latest updates.


Where Next?

Popular in Discussions Top

Rustixir
Hi everyone, im working on find best language/framework/system for high concurrency, high performance and stable performance after wor...
New
arcanemachine
https://nitter.net/josevalim/status/1744395345872683471 https://twitter.com/josevalim/status/1744395345872683471
New
ricklove
I was just introduced to Elixir and Phoenix. I was told about the 2 million websocket test that was done 2 years ago. From my research, t...
New
AngeloChecked
What learn first? Rust or Elixir Hi Elixir community! I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
WolfDan
After doing a port from a c++ library to my project in phoenix I’ve seen that I need a faster way to run this algorithm and I found this ...
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
New
CharlesO
Erlang :list.nth simple, but 1 - based nth(1, [H|_]) -&gt; H; nth(N, [_|T]) when N &gt; 1 -&gt; nth(N - 1, T). Elixir Enum.at … coo...
New
ben-pr-p
In general I’ve been sticking to this community style guide GitHub - christopheradams/elixir_style_guide: A community driven style guide ...
New
New

Other popular topics Top

9mm
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
mcarvalho
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
chrismccord
Phoenix 1.4.0 released Phoenix 1.4 is out! This release ships with exciting new features, most notably with HTTP2 support, improved deve...
688 30840 112
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
josevalim
Hi everyone, One of the features added to Elixir early on to help integration with Erlang code was the idea of overridable function defi...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
jerry
Good day to you all. I have been struggling to get a query involving like and ilike to work. Can anyone assist me on this, please? pro...
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New

We're in Beta

About us Mission Statement