[comments]: The original author of Mini-NDN docker is Md Ashiqur Rahman (marahman@email.arizona.edu)
You can use the nightly build from GitHub package registry
docker run -m 4g --cpus=4 -it --privileged \ -v /lib/modules:/lib/modules \ ghcr.io/named-data/mini-ndn:master bash
The Dockerfile can be used directly to build
an image from scratch.
Dockerfile
:docker build -t minindn .
docker run -m 4g --cpus=4 -it --privileged \ -v /lib/modules:/lib/modules \ minindn bin/bash
--privileged
is mandatory for underlying Mininet to utilize virtual switchrun
is /mini-ndn
containing the installation and examples.-e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix
to the docker run
command.