Skip to content
Snippets Groups Projects
Select Git revision
  • 9ce092c9c055f3b16e2a1bcdaf4fea9102086724
  • main default
  • feature/cleanup-for-registry protected
  • kinetic
  • 0.3.7
  • 0.3.6
  • 0.3.5
  • 0.3.4
  • 0.3.3
  • 0.3.2
  • 0.2.2
  • 0.3.1
  • 0.3.0
  • 0.2.1
  • 0.1.6
  • 0.1.5
  • 0.2.0
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.0.1
  • 0.0.0
23 results

settings.gradle

Blame
  • docker-run.sh 537 B
    #!/bin/bash
    
    # http://wiki.ros.org/docker/Tutorials/GUI
    
    docker build . -t ceti-panda-gazebo-workspace \
        --build-arg UID=$UID \
        --build-arg GID=$GID
    
    XSOCK=/tmp/.X11-unix
    XAUTH=/tmp/.docker.xauth
    touch $XAUTH
    xauth nlist $DISPLAY | sed -e 's/^..../ffff/' | xauth -f $XAUTH nmerge -
    
    docker run -it \
        --volume=$XSOCK:$XSOCK:rw \
        --volume=$XAUTH:$XAUTH:rw \
        --env="XAUTHORITY=${XAUTH}" \
        --env="DISPLAY" \
        --device=/dev/dri \
        --group-add video \
        --user="ros" \
        ceti-panda-gazebo-workspace \
        "$@"