Compare commits

...

6 Commits

Author SHA1 Message Date
820e2a1137 chore(ide): Update docker build args 2025-01-10 13:40:27 -07:00
e9a0a3bb15 refactor(dockerfile): Remove deprecated labels
Remove maintainer-related labels as they've been long superseded by
opencontainers-author label.
2025-01-10 13:39:08 -07:00
41a1506ee7 chore(ide): Delete old git plugin data 2025-01-10 13:38:13 -07:00
804e52aac2 chore(git): Update ignored files
Ignore IDE git plugin generated files.
2025-01-10 13:37:50 -07:00
0385f2699d chore(ide): Update ide settings
Update git and project tracking settings.
2025-01-10 13:35:30 -07:00
666cc8a592 feat(dockerfile): Increment nginx base to 1.27.3 2025-01-10 13:34:40 -07:00
5 changed files with 7 additions and 15 deletions

1
.gitignore vendored
View File

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

View File

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

View File

@ -1,6 +1,7 @@
<?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" />
<option name="imageTag" value="docker.asifbacchus.dev/nginx/ab-nginx:5.2.1-1.27.3" />
<option name="buildArgs">
<list>
<DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" />
<option name="value" value="2024-08-31" />
<option name="value" value="2025-01-10" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" />
<option name="value" value="9104126356" />
<option name="value" value="e9a0a3bb15" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" />
<option name="value" value="5.2.1" />
<option name="value" value="5.2.1.2" />
</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
ARG NGINX_VERSION=1.27.3
FROM nginx:${NGINX_VERSION}-alpine
ARG NGINX_VERSION
@ -50,8 +50,6 @@ 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"