From 243384c7b09d0fe438109b2b864b23aa9eec2bf8 Mon Sep 17 00:00:00 2001 From: PlusMinus0 Date: Wed, 20 Sep 2017 17:48:07 +0200 Subject: [PATCH] Reset Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d46ea50..296c237 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM openjdk:8-jre -MAINTAINER GoToFoo +MAINTAINER PlusMinus + # Create directory, downloader JD" and start JD2 for the initial update and creation of config files. RUN \ @@ -8,8 +9,10 @@ RUN \ wget -O /opt/JDownloader/JDownloader.jar --user-agent="https://hub.docker.com/r/plusminus/jdownloader2-headless/" --progress=bar:force http://installer.jdownloader.org/JDownloader.jar && \ java -Djava.awt.headless=true -jar /opt/JDownloader/JDownloader.jar + COPY startJD2.sh /opt/JDownloader/ RUN chmod +x /opt/JDownloader/startJD2.sh + # Run this when the container is started CMD /opt/JDownloader/startJD2.sh