8 Commits

Author SHA1 Message Date
asif b2a6d697b9 build(config): Update dockerfile run configuration 2026-09-12 22:57:20 -06:00
asif 64da9eea64 feat(dockerfile): Use updated mariadb program name
Old 'mysqld' program name will be deprecated in favour of the newer 'mariadbd' name.
2026-09-12 22:55:46 -06:00
asif 99e7f8fef7 feat(dockerfile): Update mariadb to 11.8.8 2026-09-12 22:51:52 -06:00
asif 8d3102509f build(config): Update dockerfile run configuration 2026-09-12 22:26:32 -06:00
asif 52514b4e5e feat(dockerfile): Update alpine to latest, use mariadb 11.4.12 2026-09-12 22:23:27 -06:00
asif e6eedf5385 build(docker): Update build variables 2025-05-18 00:07:13 -06:00
asif def1d14534 chore(ide): Update VCS settings 2025-05-17 23:59:32 -06:00
asif 08c2608102 feat(mariadb): Update version to 11.4.5-r0 2025-05-17 23:58:05 -06:00
4 changed files with 20 additions and 10 deletions
+1
View File
@@ -2,6 +2,7 @@
<project version="4"> <project version="4">
<component name="RiderProjectSettingsUpdater"> <component name="RiderProjectSettingsUpdater">
<option name="singleClickDiffPreview" value="1" /> <option name="singleClickDiffPreview" value="1" />
<option name="unhandledExceptionsIgnoreList" value="1" />
<option name="vcsConfiguration" value="3" /> <option name="vcsConfiguration" value="3" />
</component> </component>
</project> </project>
Generated
+9
View File
@@ -1,5 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="CommitMessageInspectionProfile">
<profile version="1.0">
<inspection_tool class="BodyLimit" enabled="true" level="ERROR" enabled_by_default="true" />
<inspection_tool class="SubjectBodySeparation" enabled="true" level="ERROR" enabled_by_default="true" />
<inspection_tool class="SubjectLimit" enabled="true" level="WARNING" enabled_by_default="true">
<option name="RIGHT_MARGIN" value="50" />
</inspection_tool>
</profile>
</component>
<component name="VcsDirectoryMappings"> <component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" /> <mapping directory="$PROJECT_DIR$" vcs="Git" />
</component> </component>
+7 -7
View File
@@ -1,29 +1,29 @@
<component name="ProjectRunConfigurationManager"> <component name="ProjectRunConfigurationManager">
<configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker (WSL)"> <configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
<deployment type="dockerfile"> <deployment type="dockerfile">
<settings> <settings>
<option name="imageTag" value="docker.asifbacchus.dev/mariadb/ab-mariadb-alpine:11.4.4-r1" /> <option name="imageTag" value="docker.asifbacchus.dev/mariadb/ab-mariadb-alpine:11.8.8-r0" />
<option name="buildArgs"> <option name="buildArgs">
<list> <list>
<DockerEnvVarImpl> <DockerEnvVarImpl>
<option name="name" value="ALPINE_VERSION" /> <option name="name" value="ALPINE_VERSION" />
<option name="value" value="3.21" /> <option name="value" value="3.24" />
</DockerEnvVarImpl> </DockerEnvVarImpl>
<DockerEnvVarImpl> <DockerEnvVarImpl>
<option name="name" value="MARIADB_VERSION" /> <option name="name" value="MARIADB_VERSION" />
<option name="value" value="11.4.4-r1" /> <option name="value" value="11.8.8-r0" />
</DockerEnvVarImpl> </DockerEnvVarImpl>
<DockerEnvVarImpl> <DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" /> <option name="name" value="INTERNAL_VERSION" />
<option name="value" value="2.3.0" /> <option name="value" value="2.3.1" />
</DockerEnvVarImpl> </DockerEnvVarImpl>
<DockerEnvVarImpl> <DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" /> <option name="name" value="GIT_COMMIT" />
<option name="value" value="8a6df0d489" /> <option name="value" value="64da9eea64" />
</DockerEnvVarImpl> </DockerEnvVarImpl>
<DockerEnvVarImpl> <DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" /> <option name="name" value="BUILD_DATE" />
<option name="value" value="2025-01-24" /> <option name="value" value="2026-09-12" />
</DockerEnvVarImpl> </DockerEnvVarImpl>
</list> </list>
</option> </option>
+3 -3
View File
@@ -3,8 +3,8 @@
# #
# build arguments # build arguments
ARG ALPINE_VERSION="3.21" ARG ALPINE_VERSION="3.24"
ARG MARIADB_VERSION="11.4.4-r1" ARG MARIADB_VERSION="11.8.8-r0"
FROM alpine:${ALPINE_VERSION} FROM alpine:${ALPINE_VERSION}
ARG ALPINE_VERSION ARG ALPINE_VERSION
@@ -65,7 +65,7 @@ RUN mkdir -p /docker-entrypoint-preinit.d \
# set entrypoint and default command # set entrypoint and default command
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ] ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
CMD [ "/usr/bin/mysqld", "--user=mysql", "--console" ] CMD [ "/usr/bin/mariadbd", "--user=mysql", "--console" ]
# add parameters, version and build date labels # add parameters, version and build date labels
# set build timestamp and version labels # set build timestamp and version labels