4 Commits

Author SHA1 Message Date
asif 46bb4c0250 Update docker run configuration 2022-12-10 06:02:33 -07:00
asif 3a704c2d2b Update Alpine and MariaDB versions 2022-12-10 05:58:16 -07:00
asif 377a47c84c chore(ide): update docker build config 2022-02-19 08:33:17 -07:00
asif 7ad74a6828 chore(ide): docker build configuration for Rider 2022-02-19 08:31:15 -07:00
2 changed files with 31 additions and 2 deletions
+29
View File
@@ -0,0 +1,29 @@
<component name="ProjectRunConfigurationManager">
<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:10.6.11-r0" />
<option name="buildArgs">
<list>
<DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" />
<option name="value" value="2.1" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" />
<option name="value" value="3a704c2d2b" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" />
<option name="value" value="2022-12-10" />
</DockerEnvVarImpl>
</list>
</option>
<option name="buildOnly" value="true" />
<option name="sourceFilePath" value="Dockerfile" />
</settings>
</deployment>
<EXTENSION ID="com.jetbrains.rider.docker.debug" isFastModeEnabled="true" isPublishEnabled="true" />
<method v="2" />
</configuration>
</component>
+2 -2
View File
@@ -3,8 +3,8 @@
#
# build arguments
ARG ALPINE_VERSION="3.15"
ARG MARIADB_VERSION="10.6.4-r2"
ARG ALPINE_VERSION="3.17"
ARG MARIADB_VERSION="10.6.11-r0"
FROM alpine:${ALPINE_VERSION}
ARG ALPINE_VERSION