Skip to content

Commit 565a03f

Browse files
Bot Updating Templated Files
1 parent cdab98e commit 565a03f

File tree

1 file changed

+100
-66
lines changed

1 file changed

+100
-66
lines changed

readme-vars.yml

Lines changed: 100 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,32 @@ project_url: "https://www.transmissionbt.com/"
66
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png"
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
9-
109
# supported architectures
1110
available_architectures:
12-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
14-
11+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
12+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1513
# container parameters
1614
common_param_env_vars_enabled: true
1715
param_container_name: "{{ project_name }}"
1816
param_usage_include_vols: true
1917
param_volumes:
20-
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Where transmission should store config files and logs." }
21-
- { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Local path for downloads." }
22-
- { vol_path: "/watch", vol_host_path: "/path/to/watch/folder", desc: "Watch folder for torrent files." }
18+
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/data", desc: "Where transmission should store config files and logs."}
19+
- {vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Local path for downloads."}
20+
- {vol_path: "/watch", vol_host_path: "/path/to/watch/folder", desc: "Watch folder for torrent files."}
2321
param_usage_include_ports: true
2422
param_ports:
25-
- { external_port: "9091", internal_port: "9091", port_desc: "WebUI" }
26-
- { external_port: "51413", internal_port: "51413", port_desc: "Torrent Port TCP" }
27-
- { external_port: "51413", internal_port: "51413/udp", port_desc: "Torrent Port UDP" }
28-
23+
- {external_port: "9091", internal_port: "9091", port_desc: "WebUI"}
24+
- {external_port: "51413", internal_port: "51413", port_desc: "Torrent Port TCP"}
25+
- {external_port: "51413", internal_port: "51413/udp", port_desc: "Torrent Port UDP"}
2926
# optional container parameters
3027
opt_param_usage_include_env: true
3128
opt_param_env_vars:
32-
- { env_var: "TRANSMISSION_WEB_HOME", env_value: "", desc: "Specify the path to an alternative UI folder." }
33-
- { env_var: "USER", env_value: "", desc: "Specify an optional username for the interface" }
34-
- { env_var: "PASS", env_value: "", desc: "Specify an optional password for the interface" }
35-
- { env_var: "WHITELIST", env_value: "", desc: "Specify an optional list of comma separated ip whitelist. Fills rpc-whitelist setting."}
36-
- { env_var: "PEERPORT", env_value: "", desc: "Specify an optional port for torrent TCP/UDP connections. Fills peer-port setting."}
37-
- { env_var: "HOST_WHITELIST", env_value: "", desc: "Specify an optional list of comma separated dns name whitelist. Fills rpc-host-whitelist setting."}
38-
29+
- {env_var: "TRANSMISSION_WEB_HOME", env_value: "", desc: "Specify the path to an alternative UI folder."}
30+
- {env_var: "USER", env_value: "", desc: "Specify an optional username for the interface"}
31+
- {env_var: "PASS", env_value: "", desc: "Specify an optional password for the interface"}
32+
- {env_var: "WHITELIST", env_value: "", desc: "Specify an optional list of comma separated ip whitelist. Fills rpc-whitelist setting."}
33+
- {env_var: "PEERPORT", env_value: "", desc: "Specify an optional port for torrent TCP/UDP connections. Fills peer-port setting."}
34+
- {env_var: "HOST_WHITELIST", env_value: "", desc: "Specify an optional list of comma separated dns name whitelist. Fills rpc-host-whitelist setting."}
3935
# application setup block
4036
app_setup_block_enabled: true
4137
app_setup_block: |
@@ -62,53 +58,91 @@ app_setup_block: |
6258
## Use alternative Transmission torrent ports
6359
6460
Use `PEERPORT` to specify the port(s) Transmission should listen on. This disables random port selection. This should be the same as the port mapped in your docker configuration.
65-
61+
# init diagram
62+
init_diagram: |
63+
"transmission:latest": {
64+
docker-mods
65+
base {
66+
fix-attr +\nlegacy cont-init
67+
}
68+
docker-mods -> base
69+
legacy-services
70+
custom services
71+
init-services -> legacy-services
72+
init-services -> custom services
73+
custom services -> legacy-services
74+
legacy-services -> ci-service-check
75+
init-migrations -> init-adduser
76+
init-os-end -> init-config
77+
init-config -> init-config-end
78+
init-crontab-config -> init-config-end
79+
init-transmission-config -> init-config-end
80+
init-config -> init-crontab-config
81+
init-mods-end -> init-custom-files
82+
base -> init-envfile
83+
base -> init-migrations
84+
init-config-end -> init-mods
85+
init-mods-package-install -> init-mods-end
86+
init-mods -> init-mods-package-install
87+
init-adduser -> init-os-end
88+
init-envfile -> init-os-end
89+
init-custom-files -> init-services
90+
init-config -> init-transmission-config
91+
init-services -> svc-cron
92+
svc-cron -> legacy-services
93+
init-services -> svc-transmission
94+
svc-transmission -> legacy-services
95+
}
96+
Base Images: {
97+
"baseimage-alpine:edge"
98+
}
99+
"transmission:latest" <- Base Images
66100
# changelog
67101
changelogs:
68-
- { date: "29.11.24:", desc: "Fix PEERPORT setting."}
69-
- { date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
70-
- { date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
71-
- { date: "10.06.23:", desc: "Bump unrar to 6.2.8, install transmission-extra." }
72-
- { date: "25.05.23:", desc: "Deprecate armhf." }
73-
- { date: "14.05.23:", desc: "Explicitly install transmission-remote." }
74-
- { date: "02.03.23:", desc: "Add cron init to allow user customizable crontabs." }
75-
- { date: "08.02.23:", desc: "Rebase to Alpine Edge to get access to most up to date builds of Transmission. Remove bundled 3rd party UI packages." }
76-
- { date: "05.01.23:", desc: "Rebase to Alpine 3.17, restore GNU findutils package." }
77-
- { date: "02.11.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
78-
- { date: "12.08.22:", desc: "Bump unrar to 6.1.7." }
79-
- { date: "03.04.22:", desc: "Add Transmissionic as a UI option." }
80-
- { date: "21.02.22:", desc: "Build unrar from source, rebase to Alpine 3.15, add symlinks neeeded for TWC. Credit @alexbelgium" }
81-
- { date: "09.07.21:", desc: "Wait for the transmission-daemon termination after a caught sigterm." }
82-
- { date: "06.03.21:", desc: "Add Flood for Transmission as a UI option." }
83-
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
84-
- { date: "02.11.20:", desc: "Add ca-certificates package to allow connecting to https trackers." }
85-
- { date: "02.06.20:", desc: "Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3." }
86-
- { date: "11.05.20:", desc: "Remove unnecessary chmod (remnant of previous change)." }
87-
- { date: "28.04.20:", desc: "Use transmission-remote to update blocklist." }
88-
- { date: "30.03.20:", desc: "Internalize blocklist-update.sh." }
89-
- { date: "29.03.20:", desc: "Update auth info in readme." }
90-
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
91-
- { date: "04.10.19:", desc: "Update package label." }
92-
- { date: "21.08.19:", desc: "Add optional user/pass environment variables, fix transmission shut down if user/pass are set." }
93-
- { date: "19.07.19:", desc: "Send SIGTERM in blocklist update to properly close pid." }
94-
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
95-
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
96-
- { date: "22.02.19:", desc: "Rebase to Alpine 3.9, add themes to baseimage, add python and findutils." }
97-
- { date: "22.02.19:", desc: "Catch term and clean exit." }
98-
- { date: "07.02.19:", desc: "Add pipeline logic and multi arch." }
99-
- { date: "15.08.18:", desc: "Rebase to alpine linux 3.8." }
100-
- { date: "12.02.18:", desc: "Pull transmission from edge repo." }
101-
- { date: "10.01.18:", desc: "Rebase to alpine linux 3.7." }
102-
- { date: "25.07.17:", desc: "Add rsync package." }
103-
- { date: "27.05.17:", desc: "Rebase to alpine linux 3.6." }
104-
- { date: "06.02.17:", desc: "Rebase to alpine linux 3.5." }
105-
- { date: "15.01.17:", desc: "Add p7zip, tar, unrar, and unzip packages." }
106-
- { date: "16.10.16:", desc: "Blocklist autoupdate with optional authentication." }
107-
- { date: "14.10.16:", desc: "Add version layer informationE." }
108-
- { date: "23.09.16:", desc: "Add information about securing the webui to README." }
109-
- { date: "21.09.16:", desc: "Add curl package." }
110-
- { date: "09.09.16:", desc: "Add layer badges to README." }
111-
- { date: "28.08.16:", desc: "Add badges to README." }
112-
- { date: "09.08.16:", desc: "Rebase to alpine linux." }
113-
- { date: "06.12.15:", desc: "Separate mapping for watch folder." }
114-
- { date: "16.11.15:", desc: "Initial Release." }
102+
- {date: "29.11.24:", desc: "Fix PEERPORT setting."}
103+
- {date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
104+
- {date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
105+
- {date: "10.06.23:", desc: "Bump unrar to 6.2.8, install transmission-extra."}
106+
- {date: "25.05.23:", desc: "Deprecate armhf."}
107+
- {date: "14.05.23:", desc: "Explicitly install transmission-remote."}
108+
- {date: "02.03.23:", desc: "Add cron init to allow user customizable crontabs."}
109+
- {date: "08.02.23:", desc: "Rebase to Alpine Edge to get access to most up to date builds of Transmission. Remove bundled 3rd party UI packages."}
110+
- {date: "05.01.23:", desc: "Rebase to Alpine 3.17, restore GNU findutils package."}
111+
- {date: "02.11.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3."}
112+
- {date: "12.08.22:", desc: "Bump unrar to 6.1.7."}
113+
- {date: "03.04.22:", desc: "Add Transmissionic as a UI option."}
114+
- {date: "21.02.22:", desc: "Build unrar from source, rebase to Alpine 3.15, add symlinks neeeded for TWC. Credit @alexbelgium"}
115+
- {date: "09.07.21:", desc: "Wait for the transmission-daemon termination after a caught sigterm."}
116+
- {date: "06.03.21:", desc: "Add Flood for Transmission as a UI option."}
117+
- {date: "23.01.21:", desc: "Rebasing to alpine 3.13."}
118+
- {date: "02.11.20:", desc: "Add ca-certificates package to allow connecting to https trackers."}
119+
- {date: "02.06.20:", desc: "Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3."}
120+
- {date: "11.05.20:", desc: "Remove unnecessary chmod (remnant of previous change)."}
121+
- {date: "28.04.20:", desc: "Use transmission-remote to update blocklist."}
122+
- {date: "30.03.20:", desc: "Internalize blocklist-update.sh."}
123+
- {date: "29.03.20:", desc: "Update auth info in readme."}
124+
- {date: "19.12.19:", desc: "Rebasing to alpine 3.11."}
125+
- {date: "04.10.19:", desc: "Update package label."}
126+
- {date: "21.08.19:", desc: "Add optional user/pass environment variables, fix transmission shut down if user/pass are set."}
127+
- {date: "19.07.19:", desc: "Send SIGTERM in blocklist update to properly close pid."}
128+
- {date: "28.06.19:", desc: "Rebasing to alpine 3.10."}
129+
- {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."}
130+
- {date: "22.02.19:", desc: "Rebase to Alpine 3.9, add themes to baseimage, add python and findutils."}
131+
- {date: "22.02.19:", desc: "Catch term and clean exit."}
132+
- {date: "07.02.19:", desc: "Add pipeline logic and multi arch."}
133+
- {date: "15.08.18:", desc: "Rebase to alpine linux 3.8."}
134+
- {date: "12.02.18:", desc: "Pull transmission from edge repo."}
135+
- {date: "10.01.18:", desc: "Rebase to alpine linux 3.7."}
136+
- {date: "25.07.17:", desc: "Add rsync package."}
137+
- {date: "27.05.17:", desc: "Rebase to alpine linux 3.6."}
138+
- {date: "06.02.17:", desc: "Rebase to alpine linux 3.5."}
139+
- {date: "15.01.17:", desc: "Add p7zip, tar, unrar, and unzip packages."}
140+
- {date: "16.10.16:", desc: "Blocklist autoupdate with optional authentication."}
141+
- {date: "14.10.16:", desc: "Add version layer informationE."}
142+
- {date: "23.09.16:", desc: "Add information about securing the webui to README."}
143+
- {date: "21.09.16:", desc: "Add curl package."}
144+
- {date: "09.09.16:", desc: "Add layer badges to README."}
145+
- {date: "28.08.16:", desc: "Add badges to README."}
146+
- {date: "09.08.16:", desc: "Rebase to alpine linux."}
147+
- {date: "06.12.15:", desc: "Separate mapping for watch folder."}
148+
- {date: "16.11.15:", desc: "Initial Release."}

0 commit comments

Comments
 (0)