A docker image that runs Makerbot Desktop.
$ git clone https://github.com/monkeynaleo/makerware-docker
$ cd makerware-docker
$ docker build -t makerware-docker .
The following command will:
- share the display settings with the host (
-e DISPLAY=$DISPLAY
), - share the devices with the host in order to connect to the 3D printer (
-v /dev/:/dev/
), - mount
~/makerbot
into${HOME}
within the container (-v ${HOME}/makerbot:/home/makerbot
), and - run
makerware
and its backend service.
$ docker run -ti -e DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v /dev/:/dev/ \
-v ${HOME}/makerbot:/home/makerbot \
--net=host makerware-docker
Please try the following command.
$ xhost local:root
This software is released under the MIT License, see LICENSE.md.