An open API service indexing awesome lists of open source software.

https://github.com/steveb/cura-docker

Cura packaged as a container from Ubuntu PPA
https://github.com/steveb/cura-docker

Last synced: over 1 year ago
JSON representation

Cura packaged as a container from Ubuntu PPA

Awesome Lists containing this project

README

          

# Cura packaged as a container from Ubuntu PPA

This image packages [Thomas Pietrowski's cura PPA](https://launchpad.net/~thopiekar/+archive/ubuntu/cura) so that it can be run in an isloated container.

It can be run with the following script:

```sh
#!/bin/sh
XSOCK=/tmp/.X11-unix
XAUTH=/tmp/.docker.xauth
xauth nlist :0 | sed -e 's/^..../ffff/' | xauth -f $XAUTH nmerge -
docker run -ti -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $HOME:$HOME -v $XSOCK:$XSOCK -v $XAUTH:$XAUTH -e XAUTHORITY=$XAUTH -e DISPLAY --user $UID:$GROUPS docker.io/stevebake/cura-docker
```