Skip to content

Commit

Permalink
bumps 1.3.1 version and adds missing data for PR#60
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Mar 27, 2020
1 parent e4dcfee commit d431cb6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ COPY qemu-arm-static /usr/bin/
FROM builder

ARG ARCH=armhf
ARG VERSION="1.3.0"
ARG VERSION="1.3.1"
LABEL maintainer="Jay MOULIN <https://jaymoulin.me/me/docker-jdownloader> <https://twitter.com/MoulinJay>"
LABEL version="${VERSION}-${ARCH}"
ENV LD_LIBRARY_PATH=/lib;/lib32;/usr/lib
ENV XDG_DOWNLOAD_DIR=/opt/JDownloader/Downloads

COPY ./${ARCH}/*.jar /opt/JDownloader/libs/
# archive extraction uses sevenzipjbinding library
Expand All @@ -28,6 +29,5 @@ COPY configure.sh /usr/bin/configure
EXPOSE 3129
WORKDIR /opt/JDownloader

ENV XDG_DOWNLOAD_DIR /opt/JDownloader/Downloads

CMD ["/opt/JDownloader/daemon.sh"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= 1.3.0
VERSION ?= 1.3.1
CACHE ?= --no-cache=1
FULLVERSION ?= ${VERSION}
archs ?= amd64 arm32v6 armhf arm64v8
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ or with this command :
docker exec jdownloader configure email@email.com password
```

You can also configure the device name that will appear on MyJdownloader using the environment variable `MYJD_DEVICE_NAME`.
You can also configure the device name that will appear on MyJdownloader using the environment variable `MYJD_DEVICE_NAME`, or default download path by changing `XDG_DOWNLOAD_DIR`.

Everything else can be configurable on your MyJDownloader account : https://my.jdownloader.org/index.html#dashboard.

Expand Down
4 changes: 3 additions & 1 deletion debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ COPY qemu-aarch64-static /usr/bin/
FROM builder

ARG ARCH=armel
ARG VERSION="1.0.1"
ARG VERSION="1.3.1"
LABEL maintainer="Jay MOULIN <https://jaymoulin.me/me/docker-jdownloader> <https://twitter.com/MoulinJay>"
LABEL version="${VERSION}-${ARCH}"

COPY ./${ARCH}/*.jar /opt/JDownloader/libs/
ENV XDG_DOWNLOAD_DIR=/opt/JDownloader/Downloads

# archive extraction uses sevenzipjbinding library
# which is compiled against libstdc++
RUN mkdir -p /opt/JDownloader/ && \
Expand Down

0 comments on commit d431cb6

Please sign in to comment.