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: .github/workflows/external_trigger.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ jobs:
29
29
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
30
30
echo "> External trigger running off of master branch. To disable this trigger, add \`mariadb_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
@@ -195,6 +197,7 @@ Containers are configured using parameters passed at runtime (such as those abov
195
197
|`-e MYSQL_USER=MYSQL_USER`| This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here). (valid only for first run) |
196
198
|`-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). (valid only for first run) |
197
199
|`-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). |
200
+
|`-e CLI_OPTS=`| Pass CLI options to mariadbd via mariadbd-safe. Use with caution as mariadbd option precedence is complex. |
198
201
|`-v /config`| Persistent config files |
199
202
|`--read-only=true`| Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). |
200
203
|`--user=1000:1000`| Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). |
@@ -361,6 +364,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
361
364
362
365
## Versions
363
366
367
+
***14.02.25:** - Rebase to Alpine 3.23. Add ability to pass CLI options to mariadbd.
364
368
***09.07.25:** - Rebase to Alpine 3.22.
365
369
***11.01.25:** - Add log rotation, follow the instructions in the container log.
Copy file name to clipboardExpand all lines: readme-vars.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ opt_param_env_vars:
30
30
- {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). (valid only for first run)"}
31
31
- {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). (valid only for first run)"}
32
32
- {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)."}
33
+
- {env_var: "CLI_OPTS", env_value: "", desc: "Pass CLI options to mariadbd via mariadbd-safe. Use with caution as mariadbd option precedence is complex."}
33
34
readonly_supported: true
34
35
readonly_message: |
35
36
* `/tmp` must be mounted to tmpfs
@@ -143,6 +144,7 @@ init_diagram: |
143
144
"mariadb:latest" <- Base Images
144
145
# changelog
145
146
changelogs:
147
+
- {date: "14.02.25:", desc: "Rebase to Alpine 3.23. Add ability to pass CLI options to mariadbd."}
146
148
- {date: "09.07.25:", desc: "Rebase to Alpine 3.22."}
147
149
- {date: "11.01.25:", desc: "Add log rotation, follow the instructions in the container log."}
148
150
- {date: "06.01.25:", desc: "Rebase to Alpine 3.21."}
0 commit comments