Skip to content

Commit 9a58780

Browse files
authored
Merge pull request #153 from johman10/add-flood-for-transmission
Add flood-for-transmission as an alternative UI
2 parents 3578497 + df9b8bc commit 9a58780

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ RUN \
5454
tar xf \
5555
/tmp/kettu.tar.gz -C \
5656
/kettu --strip-components=1 && \
57+
curl -o \
58+
/tmp/flood-for-transmission.tar.gz -L \
59+
"https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \
60+
tar xf \
61+
/tmp/flood-for-transmission.tar.gz -C \
62+
/ && \
5763
echo "**** cleanup ****" && \
5864
rm -rf \
5965
/tmp/*

Dockerfile.aarch64

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ RUN \
5454
tar xf \
5555
/tmp/kettu.tar.gz -C \
5656
/kettu --strip-components=1 && \
57+
curl -o \
58+
/tmp/flood-for-transmission.tar.gz -L \
59+
"https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \
60+
tar xf \
61+
/tmp/flood-for-transmission.tar.gz -C \
62+
/ && \
5763
echo "**** cleanup ****" && \
5864
rm -rf \
5965
/tmp/*
@@ -65,4 +71,3 @@ COPY root/ /
6571
# ports and volumes
6672
EXPOSE 9091 51413
6773
VOLUME /config /downloads /watch
68-

Dockerfile.armhf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ RUN \
5454
tar xf \
5555
/tmp/kettu.tar.gz -C \
5656
/kettu --strip-components=1 && \
57+
curl -o \
58+
/tmp/flood-for-transmission.tar.gz -L \
59+
"https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \
60+
tar xf \
61+
/tmp/flood-for-transmission.tar.gz -C \
62+
/ && \
5763
echo "**** cleanup ****" && \
5864
rm -rf \
5965
/tmp/*
@@ -65,4 +71,3 @@ COPY root/ /
6571
# ports and volumes
6672
EXPOSE 9091 51413
6773
VOLUME /config /downloads /watch
68-

readme-vars.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cap_add_param: false
4040
# optional container parameters
4141
opt_param_usage_include_env: true
4242
opt_param_env_vars:
43-
- { env_var: "TRANSMISSION_WEB_HOME", env_value: "/combustion-release/", desc: "Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` ." }
43+
- { env_var: "TRANSMISSION_WEB_HOME", env_value: "/combustion-release/", desc: "Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission)." }
4444
- { env_var: "USER", env_value: "username", desc: "Specify an optional username for the interface" }
4545
- { env_var: "PASS", env_value: "password", desc: "Specify an optional password for the interface" }
4646
- { env_var: "WHITELIST", env_value: "iplist", desc: "Specify an optional list of comma separated ip whitelist. Fill rpc-whitelist setting."}
@@ -69,7 +69,7 @@ app_setup_block: |
6969
The automatic update is a shell script that downloads a blocklist from the url stored in the settings.json, gunzips it, and restarts the transmission daemon.
7070
7171
The automatic update will run once a day at 3am local server time.
72-
72+
7373
## Using whitelist
7474
7575
Use `WHITELIST` to enable a list of ip as whitelist. This enable support for `rpc-whitelist`. When `WHITELIST` is empty support for whitelist is disabled.
@@ -79,6 +79,7 @@ app_setup_block: |
7979
# changelog
8080
changelogs:
8181

82+
- { date: "06.03.21:", desc: "Add Flood for Transmission as a UI option" }
8283
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
8384
- { date: "02.11.20:", desc: "Add ca-certificates package to allow connecting to https trackers." }
8485
- { date: "02.06.20:", desc: "Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3." }

0 commit comments

Comments
 (0)