diff --git a/octoprint/.env.example b/octoprint/.env.example new file mode 100644 index 0000000..e69de29 diff --git a/octoprint/compose.yml b/octoprint/compose.yml new file mode 100644 index 0000000..24c1bd5 --- /dev/null +++ b/octoprint/compose.yml @@ -0,0 +1,19 @@ +services: + octoprint: + image: octoprint/octoprint + restart: unless-stopped + ports: + - 2232:80 + # devices: + # use `python -m serial.tools.miniterm` to see what the name is of the printer, this requires pyserial + # - /dev/ttyACM0:/dev/ttyACM0 + # - /dev/video0:/dev/video0 + volumes: + - octoprint:/octoprint + # uncomment the lines below to ensure camera streaming is enabled when + # you add a video device + #environment: + # - ENABLE_MJPG_STREAMER=true + +volumes: + octoprint: \ No newline at end of file