...
Installation
Create a Docker account and sign in locally
If . For Mac and Windows, you must install docker desktop instead.
If using Windows follow two more steps because Docker for Windows runs on WSL (Windows Subsystem for Linux):
Update WSL by running
wsl --update
Set the default WSL version to 2 by running
wsl --set-default-version 2
Install the Ubuntu WSL distro by running
wsl --install
If you want toinstall
a different distribution, I think you can set flags but Ubuntu is easier imoRunning
exit
will get you out of WSL if you are in the distro
Usage
MacOS
Make sure Docker Desktop is started
Pull down the Docker container you are using by running
docker pull <CONTAINER_NAME>
where CONTAINER_NAME can benwdepatie/ner-gcc-arm
for microcontroller developmentStart the container by running
docker run --rm -it --privileged -v "$PWD:/home/app" <CONTAINER_NAME>:latest bash
using the same container you just pulled.Make sure you are running it in whatever directory you want to operate on
Any flashing hardware should be mounted to container automatically
...
Make sure Docker Desktop is started and wsl ubuntu is installed (see above setup)
Pull down the Docker container you are using by running
docker pull <CONTAINER_NAME>
where CONTAINER_NAME can benwdepatie/ner-gcc-arm
for microcontroller developmentcompose pull
.Start the container by running
docker compose run --rm ner-it --privileged -v "$(PWD):/home/app" <CONTAINER_NAME>:latest bash
using the same container you just pulledgcc-arm
.Make sure you are running it in whatever directory you want to operate onIf the above command doesn’t work, try
docker run --rm -it --privileged -v "%cd%:/home/app" <CONTAINER_NAME>:latest bash
the root directory of the project (Ex. Cerberus, Shepherd, Iroh, Proteus, etc.)
To mount any flashing hardware (this may be condensed into a script in the future):
Open a Windows terminal with admin privileges and run
winget install usbipd
Open a WSL terminal (
wsl
) and run the following commands to enable mounting Windows USB devices in the Docker containersudo apt update
sudo apt install linux-tools-virtual hwdata
sudo update-alternatives --install /usr/local/bin/usbip usbip `ls /usr/lib/linux-tools/*/usbip | tail -n1` 20
(If interacting with hardware) Mount the Raspberry Pi probe by finding the device in another Windows terminal with
usbipd wsl list
and mount the device in a Windows terminal window (with admin privileges the first time you do this) withusbipd bind --busid=<BUSID>
You’re looking for the
CMSIS-DAP v2 Interface
device
Run
usbipd attach --wsl=ubuntu --busid <BUSID>
Tools / Utils
...