mirror of
https://github.com/mkuf/prind.git
synced 2026-05-07 02:25:51 +02:00
install additional plugins for octoprint
This commit is contained in:
@@ -96,7 +96,11 @@ services:
|
||||
## Frontends
|
||||
##
|
||||
octoprint:
|
||||
image: octoprint/octoprint:1-minimal
|
||||
image: octoprint:latest
|
||||
build:
|
||||
args:
|
||||
VERSION: 1.7-minimal
|
||||
context: dockerfiles/octoprint
|
||||
container_name: octoprint
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
ARG VERSION=minimal
|
||||
FROM octoprint/octoprint:${VERSION}
|
||||
|
||||
RUN apt update \
|
||||
&& apt install -y something \
|
||||
&& apt clean
|
||||
|
||||
RUN pip install "https://github.com/OllisGit/OctoPrint-PrintJobHistory/releases/latest/download/master.zip" \
|
||||
&& pip install "https://github.com/eyal0/OctoPrint-PrintTimeGenius/archive/master.zip" \
|
||||
&& pip install "https://github.com/OllisGit/OctoPrint-FilamentManager/releases/latest/download/master.zip" \
|
||||
&& pip install "https://github.com/jneilliii/OctoPrint-PrusaSlicerThumbnails/archive/master.zip" \
|
||||
&& pip install "https://github.com/thijsbekke/OctoPrint-Pushover/archive/master.zip" \
|
||||
&& pip install "https://github.com/jneilliii/OctoPrint-TabOrder/archive/master.zip" \
|
||||
&& pip install "https://github.com/1r0b1n0/OctoPrint-Tempsgraph/archive/master.zip" \
|
||||
&& pip install "https://github.com/jneilliii/OctoPrint-TerminalCommandsExtended/archive/master.zip" \
|
||||
&& pip install "https://github.com/birkbjo/OctoPrint-Themeify/archive/master.zip" \
|
||||
&& pip install "https://github.com/BillyBlaze/OctoPrint-TouchUI/archive/master.zip" \
|
||||
5
dockerfiles/octoprint/Dockerfile
Normal file
5
dockerfiles/octoprint/Dockerfile
Normal file
@@ -0,0 +1,5 @@
|
||||
ARG VERSION=minimal
|
||||
FROM octoprint/octoprint:${VERSION}
|
||||
|
||||
COPY plugins.txt /tmp/plugins.txt
|
||||
RUN pip install -r /tmp/plugins.txt
|
||||
10
dockerfiles/octoprint/plugins.txt
Normal file
10
dockerfiles/octoprint/plugins.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
https://github.com/OllisGit/OctoPrint-PrintJobHistory/releases/latest/download/master.zip
|
||||
https://github.com/eyal0/OctoPrint-PrintTimeGenius/archive/master.zip
|
||||
https://github.com/OllisGit/OctoPrint-FilamentManager/releases/latest/download/master.zip
|
||||
https://github.com/jneilliii/OctoPrint-PrusaSlicerThumbnails/archive/master.zip
|
||||
https://github.com/thijsbekke/OctoPrint-Pushover/archive/master.zip
|
||||
https://github.com/jneilliii/OctoPrint-TabOrder/archive/master.zip
|
||||
https://github.com/1r0b1n0/OctoPrint-Tempsgraph/archive/master.zip
|
||||
https://github.com/jneilliii/OctoPrint-TerminalCommandsExtended/archive/master.zip
|
||||
https://github.com/birkbjo/OctoPrint-Themeify/archive/master.zip
|
||||
https://github.com/BillyBlaze/OctoPrint-TouchUI/archive/master.zip
|
||||
Reference in New Issue
Block a user