The snappy web interface for your 3D printer.
1.6K
Dockerfile linksOctoPrint provides a web interface for controlling 3D printers, allowing the user to start a print job by sending G-code to a 3D printer connected via USB. OctoPrint monitors the status of the print job, as well as the printer itself, primarily the temperature of the print head (hot end) and the temperature of the bed, if the bed on the printer is heated. OctoPrint can also show the output of a connected webcam in order to monitor the state of the print, and can visualize the G-code in sync with the print job, or asynchronously.
OctoPrint also provides a plugin system, allowing users to extend functionality. There are currently over 150 plugins listed in the official plugin repository. These include advanced timelapse videos that trigger by layer and position the model and print head properly, 3D design collection sites such as MyMiniFactory, STL.garden, integrating OctoPrint with Android apps and Android Wear modules, a Pebble smartwatch,, software integrations with printers such as BigBox3D, MakerGear M3, and Robo 3D printers, and both software and hardware integrations with Prusa i3, Proforge 2S, and the industrial-level GEWO HTP 260 and AON3D printers. It has also been used by Thomas Sanladerer in a PrintrBot as a self-contained and fully mobile printer build.
https://wikipedia.org/wiki/OctoPrint
docker run -d \
--name octoprint \
--privileged \
-v octoprint:/root/.octoprint \
-v /var/run/docker.sock:/var/run/docker.sock \
-p 80:5000 \
--restart always \
davidhamm/octoprint:latest
--privileged-v octoprint:/root/.octoprint-v /var/run/docker.sock:/var/run/docker.sock-p 80:5000--restart alwaysThere is also a version with common plugins preinstalled:
in order to start octoprint with this plugins preinstalled, just start a container from davidhamm/octoprint:1.4.0-common-plugins like so:
docker run -d \
--name octoprint \
--privileged \
-v octoprint:/root/.octoprint \
-v /var/run/docker.sock:/var/run/docker.sock \
-p 80:5000 \
--restart always \
davidhamm/octoprint:1.4.0-common-plugins
This container supports restarting itself from within the OctoPrint UI.
Go to OctoPrint's Settings, select Server from the navigation menu and put 'docker restart octoprint' into the field Restart OctoPrint.
Ffmpeg comes preinstalled with this container. it is located in /usr/bin/ffmpeg.
In order to create timelapses go to OctoPrint's Settings, select Webcam & Timelapse and put this path into the field Path to FFMPEG.
OctoPrint will be available on this URL:
http://localhost
Content type
Image
Digest
Size
228.4 MB
Last updated
over 5 years ago
docker pull davidhamm/octoprint