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
- Host: GitHub
- URL: https://github.com/steveb/cura-docker
- Owner: steveb
- Created: 2017-02-16T21:40:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-22T09:46:14.000Z (about 8 years ago)
- Last Synced: 2025-02-08T19:35:01.272Z (over 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```