Skip to content

Commit 1f01fff

Browse files
authored
Merge branch 'master' into stop
2 parents 21343cd + 47aef25 commit 1f01fff

File tree

7 files changed

+744
-4
lines changed

7 files changed

+744
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM lsiobase/alpine:3.6
2-
MAINTAINER sparklyballs
1+
FROM lsiobase/alpine:3.8
32

43
# set version label
54
ARG BUILD_DATE
65
ARG VERSION
76
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
7+
LABEL maintainer="sparklyballs"
88

9-
# install packages
109
RUN \
10+
echo "**** install packages ****" && \
1111
apk add --no-cache \
1212
curl \
1313
jq \
@@ -20,7 +20,7 @@ RUN \
2020
unrar \
2121
unzip
2222

23-
# copy local files
23+
# copy local files
2424
COPY root/ /
2525

2626
# ports and volumes

Dockerfile.aarch64

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
FROM lsiobase/alpine.arm64:3.8
2+
3+
# Add qemu to build on x86_64 systems
4+
COPY qemu-aarch64-static /usr/bin
5+
6+
# set version label
7+
ARG BUILD_DATE
8+
ARG VERSION
9+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10+
LABEL maintainer="sparklyballs"
11+
12+
RUN \
13+
echo "**** install packages ****" && \
14+
apk add --no-cache \
15+
curl \
16+
jq \
17+
openssl \
18+
p7zip \
19+
rsync \
20+
tar \
21+
transmission-cli \
22+
transmission-daemon \
23+
unrar \
24+
unzip
25+
26+
# copy local files
27+
COPY root/ /
28+
29+
# ports and volumes
30+
EXPOSE 9091 51413
31+
VOLUME /config /downloads /watch

Dockerfile.armhf

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
FROM lsiobase/alpine.armhf:3.8
2+
3+
# Add qemu to build on x86_64 systems
4+
COPY qemu-arm-static /usr/bin
5+
6+
# set version label
7+
ARG BUILD_DATE
8+
ARG VERSION
9+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10+
LABEL maintainer="sparklyballs"
11+
12+
RUN \
13+
echo "**** install packages ****" && \
14+
apk add --no-cache \
15+
curl \
16+
jq \
17+
openssl \
18+
p7zip \
19+
rsync \
20+
tar \
21+
transmission-cli \
22+
transmission-daemon \
23+
unrar \
24+
unzip
25+
26+
# copy local files
27+
COPY root/ /
28+
29+
# ports and volumes
30+
EXPOSE 9091 51413
31+
VOLUME /config /downloads /watch

0 commit comments

Comments
 (0)