Go to file
2022-02-10 20:35:18 -05:00
.github/workflows Fixing variable binding. 2022-02-10 20:35:18 -05:00
.gitattributes Initial commit 2022-01-30 23:08:59 -05:00
build_and_push.sh Simplified the Dockerfile further and also fixed the build and push script to properly push the tagged builds. 2022-02-07 20:21:28 -05:00
Dockerfile Simplified the Dockerfile further and also fixed the build and push script to properly push the tagged builds. 2022-02-07 20:21:28 -05:00
get_latest_prusaslicer_release.sh Adjusted the naming of prusa_slicer to prusaslicer and also forked the tag script for the GitHub Action to automatically tag when a new version of Prusaslicer is available. 2022-02-04 18:54:16 -05:00
menu.xml * Simplified the Dockerfile further. 2022-02-05 13:41:50 -05:00
README.md Made the configuration resilient and added a README. 2022-02-01 21:50:33 -05:00
supervisord.conf Adjusted the DockerFile to use bash for the CMD and finally also forcefully binded Prusaslicers datadir to .config/PrusaSlicer/. 2022-02-04 20:37:00 -05:00
tag_latest_prusaslicer.sh * Simplified the Dockerfile further. 2022-02-05 13:41:50 -05:00

Prusaslicer noVNC Docker Container

Overview

This is a super basic noVNC build using supervisor to serve Prusaslicer in your favorite web browser. This was primarily built for users using the popular unraid NAS software, to allow them to quickly hop in a browser, slice, and upload their favorite 3D prints.

A lot of this was branched off of dmagyar's awesome prusaslicer-vnc-docker project, but I found it to be a bit complex for my needs and thought this approach would simplify things a lot.

How to use

In unraid

If you're using unraid, open your Docker page and under Template repositories, add https://github.com/helfrichmichael/unraid-templates and save it. You should then be able to Add Container for prusaslicer-novnc. For unraid, the template will default to 6080 for the noVNC web instance.

Outside of unraid

To run this image, you can run the following command: docker run --detach --volume=prusaslicer-novnc-data:/configs/ -p 8080:8080 -e SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt" --name=prusaslicer-novnc prusaslicer-novnc

This will bind /configs/ in the container to a local volume on my machine named prusaslicer-novnc-data, it will bind port 8080 to 8080, and finally, it will provide an environment variable to keep Prusaslicer happy by providing an SSL_CERT_FILE.

Prusaslicer

Supervisor

GitHub Source

Docker