PYNQ v2.6 released last week and one feature we added was docker support. This means docker is ready to run on any PYNQ enabled board (Zynq-7000, ZU+ and RFSoC).
Why? Well, containers are a great way to deliver complete applications and their dependencies on top of existing platforms. Perhaps you’ve used containers on your x86 machines – one notable example is the Xilinx Vitis-AI docker that includes all the tools necessary for training ML models targeting Xilinx’s DPU. Within the PYNQ team, we use containers inside our Jenkins flows for automated building of SD Card images. And finally, delivering applications for IoT edge devices is also often done using a software container technology.
In the context of Xilinx Platforms using PYNQ – this now means users can explore delivering and sharing FPGA applications through Docker Hub or within container-based orchestration frameworks.
How do I run Docker’s hello worlds on PYNQ?
Docker out-of-box allows users to run some simple images to see docker working. For PYNQ v2.6 images – copy/paste the steps below to get the helloworld applications running (I ran examples on a Ultra96 board):
# replace 'arm64' with 'armhf' if using a Zynq-7000 part
sudo apt-get -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
sudo echo "deb [arch=arm64] https://download.docker.com/linux/ubuntu bionic stable" > /etc/apt/sources.list.d/docker.list
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-get update
export CIO_VER=1.2.6-3
export DCE_VER=5:19.03.14~3-0~ubuntu-bionic
apt-get -y install containerd.io=$CIO_VER
apt-get -y install docker-ce=$DCE_VER docker-ce-cli=$DCE_VER
And then to actually see docker working, some nice examples below:
docker run hello-world
docker run -it ubuntu bash
You should see an Ubuntu 20.04 prompt in your terminal window.
Other Docker images
…will run on PYNQ. Visiting Docker Hub, there are ~32K images that support arm64 (remember not all docker images support arm64 or armhf architectures). I tried out the RUST docker image and was able to download the image onto an Ultra96 and use it to compile a hello-world Rust program. When I’m done with the image, I can delete it, leaving my existing root filesystem in its original state.
My RUST Dockerfile
FROM rust:latest
WORKDIR /
COPY . .
RUN rustc hello.rs
CMD ["/hello"]
And my hello.rs file
fn main() {
println!("hello rust from within docker on pynq");
}
Now building and running it…
docker build -t rust-docker-hello .
docker run rust-docker-hello
And output is as expected!
And for FPGA overlays
If you’d like to run an overlay, the actual docker run call needs to expose a subset of Linux devices to allow the container’s pynq access to the programmable logic. Adding --privileged
flag to the docker run call allows the container to access Linux device drivers - also not the most secure thing to do. I tried out the PYNQ Helloworld example starting from the Ubuntu base image and everything runs as expected. We’ll release docker files for this in the future - pip install ...
is still the best way to load PYNQ overlays for now.
Look for more blogs as we explore containers for Xilinx platforms. And please let us know how you would use containers on PYNQ enabled devices.