3 Commits

Author SHA1 Message Date
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 16 additions and 6 deletions
+1
View File
@@ -2,6 +2,7 @@
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="singleClickDiffPreview" value="1" />
<option name="unhandledExceptionsIgnoreList" value="1" />
<option name="vcsConfiguration" value="3" />
</component>
</project>
Generated
+9
View File
@@ -1,5 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
+5 -5
View File
@@ -2,7 +2,7 @@
<configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker (WSL)">
<deployment type="dockerfile">
<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.4.5-r0" />
<option name="buildArgs">
<list>
<DockerEnvVarImpl>
@@ -11,19 +11,19 @@
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="MARIADB_VERSION" />
<option name="value" value="11.4.4-r1" />
<option name="value" value="11.4.5-r0" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" />
<option name="value" value="2.3.0" />
<option name="value" value="2.3.1" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" />
<option name="value" value="8a6df0d489" />
<option name="value" value="08c2608102" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" />
<option name="value" value="2025-01-24" />
<option name="value" value="2025-05-18" />
</DockerEnvVarImpl>
</list>
</option>
+1 -1
View File
@@ -4,7 +4,7 @@
# build arguments
ARG ALPINE_VERSION="3.21"
ARG MARIADB_VERSION="11.4.4-r1"
ARG MARIADB_VERSION="11.4.5-r0"
FROM alpine:${ALPINE_VERSION}
ARG ALPINE_VERSION