You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -159,11 +159,11 @@ Container images are configured using parameters passed at runtime (such as thos
159
159
|`-p 3306`| Mariadb listens on this port. |
160
160
|`-e PUID=1000`| for UserID - see below for explanation |
161
161
|`-e PGID=1000`| for GroupID - see below for explanation |
162
-
|`-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD`| Set this to root password for installation (minimum 4 characters). |
162
+
|`-e MYSQL_ROOT_PASSWORD=ROOT_ACCESS_PASSWORD`| Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped). |
163
163
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London. |
164
164
|`-e MYSQL_DATABASE=USER_DB_NAME`| Specify the name of a database to be created on image startup. |
165
165
|`-e MYSQL_USER=MYSQL_USER`| This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). |
166
-
|`-e MYSQL_PASSWORD=DATABASE_PASSWORD`| Set this to the password you want to use for you MYSQL_USER (minimum 4 characters). |
166
+
|`-e MYSQL_PASSWORD=DATABASE_PASSWORD`| Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped). |
167
167
|`-e REMOTE_SQL=http://URL1/your.sql,https://URL2/your.sql`| Set this to ingest sql files from an http/https endpoint (comma seperated array). |
168
168
|`-v /config`| Contains the db itself and all assorted settings. |
169
169
@@ -276,7 +276,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
276
276
277
277
## Versions
278
278
279
-
***11.10.22:** - Rebase master to Alpine 3.16, migrate to s6v3.
279
+
***11.10.22:** - Rebase master to Alpine 3.16, migrate to s6v3, remove password escape logic which caused problems for a small subset of users.
- { env_var: "MYSQL_ROOT_PASSWORD", env_value: "ROOT_ACCESS_PASSWORD", desc: "Set this to root password for installation (minimum 4 characters)." }
28
+
- { env_var: "MYSQL_ROOT_PASSWORD", env_value: "ROOT_ACCESS_PASSWORD", desc: "Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped)." }
29
29
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
- { env_var: "MYSQL_DATABASE", env_value: "USER_DB_NAME", desc: "Specify the name of a database to be created on image startup." }
43
43
- { env_var: "MYSQL_USER", env_value: "MYSQL_USER", desc: "This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here)." }
44
-
- { env_var: "MYSQL_PASSWORD", env_value: "DATABASE_PASSWORD", desc: "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters)." }
44
+
- { env_var: "MYSQL_PASSWORD", env_value: "DATABASE_PASSWORD", desc: "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped)." }
45
45
- { env_var: "REMOTE_SQL", env_value: "http://URL1/your.sql,https://URL2/your.sql", desc: "Set this to ingest sql files from an http/https endpoint (comma seperated array)." }
46
46
opt_param_usage_include_vols: false
47
47
opt_param_usage_include_ports: false
@@ -96,7 +96,7 @@ app_setup_block: |
96
96
97
97
# changelog
98
98
changelogs:
99
-
- { date: "11.10.22:", desc: "Rebase master to Alpine 3.16, migrate to s6v3." }
99
+
- { date: "11.10.22:", desc: "Rebase master to Alpine 3.16, migrate to s6v3, remove password escape logic which caused problems for a small subset of users." }
100
100
- { date: "06.07.21:", desc: "Rebase master to alpine." }
101
101
- { date: "03.07.21:", desc: "Rebase to 3.14." }
102
102
- { date: "08.02.21:", desc: "Fix new installs." }
0 commit comments