YARP (Yet Another Robot Platform) Docker Images
YARP source code: https://github.com/robotology/yarp
yarp:base-ubuntu18.04
It contains YARP source code (latest official master) compiled with basic configuration.
yarp:base-ubuntu18.04-nvidia-opengl
It contains YARP source code (latest official master) compiled with basic configuration and NVidia drivers + OpenGL.
yarp:vX.Y.Z-runtime-ubuntu18.04 It contains YARP compiled and configured to run applications. A specific YARP version can be chosen at building time.
yarp:vX.Y.Z-runtime-ubuntu18.04-nvidia-opengl It contains YARP compiled and configured to run applications and NVidia drivers + OpenGL. A specific YARP version can be chosen at building time.
sudo apt-get update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker ${USER}
su - ${USER}
id -nG
It runs the container in interactive mode and remove the container when it exits.
docker run -ti --rm iitschri/yarp:v1.0-runtime-ubuntu18.04
docker run --rm iitschri/yarp:v3.2.1-runtime-ubuntu18.04 <yarp command>
If you need to build a YARP-DOCKER image with a specific YARP version you can specify it as build argument
git clone https://github.com/s4hri/yarp-docker.git
cd yarp-docker/runtime/ubutnu18.04
docker build --build-arg YARP_TAG_VER=v3.2.0 -t yarp .
docker run -ti --rm yarp
git clone https://github.com/s4hri/yarp-docker.git
cd yarp-docker/runtime/ubuntu18.04
docker build -t yarp-gui .
export XSOCK=/tmp/.X11-unix
export XAUTH=/tmp/.docker.xauth
xauth nlist $DISPLAY | sed -e 's/^..../ffff/' | xauth -f $XAUTH nmerge -
docker run -ti -v $XSOCK:$XSOCK \
-v $XAUTH:$XAUTH \
-e XAUTHORITY=$XAUTH \
yarp-gui
Content type
Image
Digest
sha256:e62d8da2d…
Size
5.9 GB
Last updated
9 days ago
docker pull iitschri/yarp:v3.12.2-cuda-ubuntu22.04