Compare commits

..

No commits in common. "820e2a1137b2d5a7c0964126170b7d8a9a8fdbff" and "87b4092177dd7bfa896b2507019a075d847d4153" have entirely different histories.

5 changed files with 15 additions and 7 deletions

1
.gitignore vendored
View File

@ -11,7 +11,6 @@
# Generated files
.idea/**/contentModel.xml
.idea/**/GitCommitMessageStorage.xml
# Sensitive or high-churn files
.idea/**/dataSources/

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitCommitMessageStorage">
<option name="messageStorage">
<MessageStorage />
</option>
</component>
</project>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="singleClickDiffPreview" value="1" />
<option name="vcsConfiguration" value="3" />
</component>
</project>

View File

@ -2,20 +2,20 @@
<configuration default="false" name="build/Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker (WSL)">
<deployment type="dockerfile">
<settings>
<option name="imageTag" value="docker.asifbacchus.dev/nginx/ab-nginx:5.2.1-1.27.3" />
<option name="imageTag" value="docker.asifbacchus.dev/nginx/ab-nginx:5.2.1-1.27" />
<option name="buildArgs">
<list>
<DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" />
<option name="value" value="2025-01-10" />
<option name="value" value="2024-08-31" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" />
<option name="value" value="e9a0a3bb15" />
<option name="value" value="9104126356" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" />
<option name="value" value="5.2.1.2" />
<option name="value" value="5.2.1" />
</DockerEnvVarImpl>
</list>
</option>

View File

@ -2,7 +2,7 @@
# build AB-NGINX container (based on NGINX mainline on Alpine linux)
#
ARG NGINX_VERSION=1.27.3
ARG NGINX_VERSION=1.27
FROM nginx:${NGINX_VERSION}-alpine
ARG NGINX_VERSION
@ -50,6 +50,8 @@ HEALTHCHECK \
CMD curl --fail http://127.0.0.1:9000/nginx_status || exit 1
# standardized labels
MAINTAINER Asif Bacchus <asif@asifbacchus.dev>
LABEL maintainer="Asif Bacchus <asif@asifbacchus.dev>"
LABEL dev.asifbacchus.docker.internalName="ab-nginx"
LABEL org.opencontainers.image.author="Asif Bacchus <asif@asifbacchus.dev>"
LABEL org.opencontainers.image.url="https://git.asifbacchus.dev/ab-docker/ab-nginx"