Skip to content

Commit 85096f8

Browse files
committed
Move password to opt envs
1 parent 0f741db commit 85096f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ services:
9494
- PGID=1000
9595
- TZ=Etc/UTC
9696
- SETTINGS_ENCRYPTION_KEY=
97-
- DUPLICATI__WEBSERVICE_PASSWORD=
9897
- CLI_ARGS= #optional
98+
- DUPLICATI__WEBSERVICE_PASSWORD= #optional
9999
volumes:
100100
- /path/to/duplicati/config:/config
101101
- /path/to/backups:/backups
@@ -114,8 +114,8 @@ docker run -d \
114114
-e PGID=1000 \
115115
-e TZ=Etc/UTC \
116116
-e SETTINGS_ENCRYPTION_KEY= \
117-
-e DUPLICATI__WEBSERVICE_PASSWORD= \
118117
-e CLI_ARGS= `#optional` \
118+
-e DUPLICATI__WEBSERVICE_PASSWORD= `#optional` \
119119
-p 8200:8200 \
120120
-v /path/to/duplicati/config:/config \
121121
-v /path/to/backups:/backups \
@@ -135,8 +135,8 @@ Containers are configured using parameters passed at runtime (such as those abov
135135
| `-e PGID=1000` | for GroupID - see below for explanation |
136136
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
137137
| `-e SETTINGS_ENCRYPTION_KEY=` | Encryption key for settings database. Minimum 8 characters, alphanumeric. |
138-
| `-e DUPLICATI__WEBSERVICE_PASSWORD=` | Password for the webui. If left unset will default to `changeme` and can be changed from the webui settings. |
139138
| `-e CLI_ARGS=` | Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with |
139+
| `-e DUPLICATI__WEBSERVICE_PASSWORD=` | Password for the webui. If left unset will default to `changeme` and can be changed from the webui settings. |
140140
| `-v /config` | Contains all relevant configuration files. |
141141
| `-v /backups` | Path to store local backups. |
142142
| `-v /source` | Path to source for files to backup. |

readme-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ param_ports:
3333
param_usage_include_env: true
3434
param_env_vars:
3535
- { env_var: "SETTINGS_ENCRYPTION_KEY", env_value: "", desc: "Encryption key for settings database. Minimum 8 characters, alphanumeric."}
36-
- { env_var: "DUPLICATI__WEBSERVICE_PASSWORD", env_value: "", desc: "Password for the webui. If left unset will default to `changeme` and can be changed from the webui settings."}
3736

3837
# optional container parameters
3938
opt_param_usage_include_env: true
4039
opt_param_env_vars:
4140
- { env_var: "CLI_ARGS", env_value: "", desc: "Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with" }
41+
- { env_var: "DUPLICATI__WEBSERVICE_PASSWORD", env_value: "", desc: "Password for the webui. If left unset will default to `changeme` and can be changed from the webui settings."}
4242

4343
readonly_supported: true
4444

0 commit comments

Comments
 (0)