Compare commits

..

8 Commits
41 ... 54

Author SHA1 Message Date
sparklyballs
f0c27ab450 Merge pull request #30 from patsissons/patch-1
add openssl to installed packages
2017-03-04 12:13:51 +00:00
Pat Sissons
244f5c6810 add openssl to installed packages
openssl is required for the blocklist updater script to support https uri's.
resolves #29
2017-02-27 11:22:02 -08:00
Neil
d22fdb48dc Merge pull request #25 from linuxserver/3.5
rebase to alpine 3.5
2017-02-06 17:29:05 +00:00
sparklyballs
97dfe76a57 rebase to alpine 3.5 2017-02-06 17:00:43 +00:00
sparklyballs
76293d786a fix spacing one of headers 2017-01-16 13:00:59 +00:00
Neil
1f0f18517d Merge pull request #23 from linuxserver/unpackers
add p7zip, tar , unrar and unzip packages
2017-01-15 22:31:19 +00:00
sparklyballs
f505697081 add p7zip, tar , unrar and unzip packages 2017-01-15 22:12:38 +00:00
sparklyballs
d9420323ac add p7zip, tar , unrar and unzip packages 2017-01-15 22:08:31 +00:00
2 changed files with 10 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM lsiobase/alpine
FROM lsiobase/alpine:3.5
MAINTAINER sparklyballs
# set version label
@@ -11,8 +11,13 @@ RUN \
apk add --no-cache \
curl \
jq \
openssl \
p7zip \
tar \
transmission-cli \
transmission-daemon
transmission-daemon \
unrar \
unzip
# copy local files
COPY root/ /

View File

@@ -67,7 +67,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved.
## Securing the webui with a username/password.
## Securing the webui with a username/password.
this requires 3 settings to be changed in the settings.json file.
@@ -104,6 +104,8 @@ The automatic update will run once a day at 3am local server time.
## Versions
+ **06.02.17:** Rebase to alpine linux 3.5.
+ **15.01.17:** Add p7zip, tar , unrar and unzip packages.
+ **16.10.16:** Blocklist autoupdate with optional authentication.
+ **14.10.16:** Add version layer information.
+ **23.09.16:** Add information about securing the webui to README..