From 16cda15fb9613d66b6330ee0ca3372fff9e2b846 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 4 Oct 2022 14:59:47 +0100 Subject: [PATCH] Remove pointy brackers around `MAX_UPLOAD` default value "5000" isn't the description of a placeholder, as "" is. Therefore it shouldn't be in brackets, it's just a default value to be changed (similar to `PUID` and `PGID` --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 3c96ca9..e9b7f4b 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -24,7 +24,7 @@ param_usage_include_net: false param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } - - { env_var: "MAX_UPLOAD", env_value: "<5000>", desc: "To set maximum upload size (in MB), default if unset is 5000." } + - { env_var: "MAX_UPLOAD", env_value: "5000", desc: "To set maximum upload size (in MB), default if unset is 5000." } param_usage_include_vols: true param_volumes: - { vol_path: "/config", vol_host_path: "", desc: "Where to store projectsend config files." }