diff --git a/389-ds-container/389-ds-container.changes b/389-ds-container/389-ds-container.changes index 8c9b1a6f8..fa770b34e 100644 --- a/389-ds-container/389-ds-container.changes +++ b/389-ds-container/389-ds-container.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Fri Oct 11 15:13:29 UTC 2024 - SUSE Update Bot diff --git a/389-ds-container/Dockerfile b/389-ds-container/Dockerfile index f96ed7b9c..867683736 100644 --- a/389-ds-container/Dockerfile +++ b/389-ds-container/Dockerfile @@ -50,7 +50,7 @@ LABEL org.opencontainers.image.base.name="%BASE_REFNAME%" LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" CMD ["/usr/lib/dirsrv/dscontainer", "-r"] -EXPOSE 3389 3636 +EXPOSE 3389/tcp 3636/tcp COPY nsswitch.conf /etc/nsswitch.conf diff --git a/alertmanager-image/Dockerfile b/alertmanager-image/Dockerfile index d24f9e49c..bc81e54e9 100644 --- a/alertmanager-image/Dockerfile +++ b/alertmanager-image/Dockerfile @@ -51,7 +51,7 @@ LABEL org.opencontainers.image.base.name="%BASE_REFNAME%" LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/bin/prometheus-alertmanager"] -EXPOSE 9093 +EXPOSE 9093/tcp HEALTHCHECK --interval=5s --timeout=5s --retries=5 \ CMD ["/usr/bin/curl", "-m", "2", "-sf", "http://localhost:9093/-/healthy"] diff --git a/alertmanager-image/alertmanager-image.changes b/alertmanager-image/alertmanager-image.changes index 9cd4072e9..ae3ed4219 100644 --- a/alertmanager-image/alertmanager-image.changes +++ b/alertmanager-image/alertmanager-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/blackbox_exporter-image/Dockerfile b/blackbox_exporter-image/Dockerfile index e1058b3ad..5c76b47bc 100644 --- a/blackbox_exporter-image/Dockerfile +++ b/blackbox_exporter-image/Dockerfile @@ -52,6 +52,6 @@ LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/bin/blackbox_exporter"] CMD ["--config.file=/etc/prometheus/blackbox.yml"] -EXPOSE 9115 +EXPOSE 9115/tcp HEALTHCHECK --interval=5s --timeout=5s --retries=5 \ CMD ["/usr/bin/curl", "-m", "2", "-sf", "http://localhost:9115/-/healthy"] diff --git a/blackbox_exporter-image/blackbox_exporter-image.changes b/blackbox_exporter-image/blackbox_exporter-image.changes index c31312e67..df954ba9e 100644 --- a/blackbox_exporter-image/blackbox_exporter-image.changes +++ b/blackbox_exporter-image/blackbox_exporter-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/distribution-image/distribution-image.changes b/distribution-image/distribution-image.changes index 69f442961..6353e4d9b 100644 --- a/distribution-image/distribution-image.changes +++ b/distribution-image/distribution-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/distribution-image/distribution-image.kiwi b/distribution-image/distribution-image.kiwi index e0ed8965a..1cd46da0d 100644 --- a/distribution-image/distribution-image.kiwi +++ b/distribution-image/distribution-image.kiwi @@ -61,7 +61,7 @@ You can contact the BCI team via https://github.com/SUSE/bci/discussions - + diff --git a/grafana-image/Dockerfile b/grafana-image/Dockerfile index c74630310..48f44ba37 100644 --- a/grafana-image/Dockerfile +++ b/grafana-image/Dockerfile @@ -58,7 +58,7 @@ ENV GF_PATHS_PLUGINS="/var/lib/grafana/plugins" ENV GF_PATHS_PROVISIONING="/etc/grafana/provisioning" ENTRYPOINT ["/run.sh"] -EXPOSE 3000 +EXPOSE 3000/tcp COPY run.sh /run.sh RUN set -euo pipefail; chmod +x /run.sh diff --git a/grafana-image/grafana-image.changes b/grafana-image/grafana-image.changes index 3fee820e6..dfe378449 100644 --- a/grafana-image/grafana-image.changes +++ b/grafana-image/grafana-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/nginx-image/Dockerfile b/nginx-image/Dockerfile index 8bc8367b3..9282549d2 100644 --- a/nginx-image/Dockerfile +++ b/nginx-image/Dockerfile @@ -51,7 +51,7 @@ LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] CMD ["nginx", "-g", "daemon off;"] -EXPOSE 80 +EXPOSE 80/tcp # sanity check that the version from the tag is equal to the version of nginx that we expect RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' nginx | cut -d '.' -f -2)" = "1.21" ] RUN set -euo pipefail; mkdir /docker-entrypoint.d diff --git a/nginx-image/nginx-image.changes b/nginx-image/nginx-image.changes index b5229ad7b..5a7998116 100644 --- a/nginx-image/nginx-image.changes +++ b/nginx-image/nginx-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/pcp-image/Dockerfile b/pcp-image/Dockerfile index 859612bcf..bb2c4c82d 100644 --- a/pcp-image/Dockerfile +++ b/pcp-image/Dockerfile @@ -51,7 +51,7 @@ LABEL com.suse.release-stage="released" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/local/bin/container-entrypoint"] CMD ["/usr/lib/systemd/systemd"] -EXPOSE 44321 44322 44323 +EXPOSE 44321/tcp 44322/tcp 44323/tcp RUN set -euo pipefail; mkdir -p /usr/share/container-scripts/pcp; mkdir -p /etc/sysconfig COPY container-entrypoint healthcheck /usr/local/bin/ diff --git a/pcp-image/pcp-image.changes b/pcp-image/pcp-image.changes index 34f32e593..f01ffc799 100644 --- a/pcp-image/pcp-image.changes +++ b/pcp-image/pcp-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/postgres-16-image/Dockerfile b/postgres-16-image/Dockerfile index 101834d50..f41127184 100644 --- a/postgres-16-image/Dockerfile +++ b/postgres-16-image/Dockerfile @@ -58,7 +58,7 @@ ENV PGDATA="/var/lib/pgsql/data" ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] CMD ["postgres"] -EXPOSE 5432 +EXPOSE 5432/tcp COPY docker-entrypoint.sh /usr/local/bin/ RUN set -euo pipefail; chmod +x /usr/local/bin/docker-entrypoint.sh; \ sed -i -e 's/exec gosu postgres "/exec setpriv --reuid=postgres --regid=postgres --clear-groups -- "/g' /usr/local/bin/docker-entrypoint.sh; \ diff --git a/postgres-16-image/postgres-16-image.changes b/postgres-16-image/postgres-16-image.changes index 4a84d9a42..b3a4982ea 100644 --- a/postgres-16-image/postgres-16-image.changes +++ b/postgres-16-image/postgres-16-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/prometheus-image/Dockerfile b/prometheus-image/Dockerfile index 191917889..77cc5cd5c 100644 --- a/prometheus-image/Dockerfile +++ b/prometheus-image/Dockerfile @@ -52,7 +52,7 @@ LABEL org.opencontainers.image.base.name="%BASE_REFNAME%" LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/bin/prometheus"] -EXPOSE 9090 +EXPOSE 9090/tcp HEALTHCHECK --interval=5s --timeout=5s --retries=5 \ CMD ["/usr/bin/curl", "-m", "2", "-sf", "http://localhost:9090/-/healthy"] diff --git a/prometheus-image/prometheus-image.changes b/prometheus-image/prometheus-image.changes index e27053c04..1fdae0cfd 100644 --- a/prometheus-image/prometheus-image.changes +++ b/prometheus-image/prometheus-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/rmt-mariadb-image/Dockerfile b/rmt-mariadb-image/Dockerfile index 50fb449c9..f4bbed3fb 100644 --- a/rmt-mariadb-image/Dockerfile +++ b/rmt-mariadb-image/Dockerfile @@ -56,7 +56,7 @@ LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["docker-entrypoint.sh"] CMD ["mariadbd"] -EXPOSE 3306 +EXPOSE 3306/tcp # sanity check that the version from the tag is equal to the version of mariadb-client that we expect RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' mariadb-client | cut -d '.' -f -2)" = "10.11" ] diff --git a/rmt-mariadb-image/rmt-mariadb-image.changes b/rmt-mariadb-image/rmt-mariadb-image.changes index 341d0b980..265b059a8 100644 --- a/rmt-mariadb-image/rmt-mariadb-image.changes +++ b/rmt-mariadb-image/rmt-mariadb-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/rmt-nginx-image/Dockerfile b/rmt-nginx-image/Dockerfile index 0eddf3ce1..d182e4abd 100644 --- a/rmt-nginx-image/Dockerfile +++ b/rmt-nginx-image/Dockerfile @@ -51,7 +51,7 @@ LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] CMD ["nginx", "-g", "daemon off;"] -EXPOSE 80 +EXPOSE 80/tcp # sanity check that the version from the tag is equal to the version of nginx that we expect RUN set -euo pipefail; [ "$(rpm -q --qf '%{version}' nginx | cut -d '.' -f -2)" = "1.21" ] RUN set -euo pipefail; mkdir /docker-entrypoint.d diff --git a/rmt-nginx-image/rmt-nginx-image.changes b/rmt-nginx-image/rmt-nginx-image.changes index 1fd2b5672..1d0b0d4f1 100644 --- a/rmt-nginx-image/rmt-nginx-image.changes +++ b/rmt-nginx-image/rmt-nginx-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Wed Oct 30 15:35:19 UTC 2024 - SUSE Update Bot diff --git a/sac-apache-tomcat-10-image/Dockerfile.openjdk11 b/sac-apache-tomcat-10-image/Dockerfile.openjdk11 index 1972cbe82..4899eea11 100644 --- a/sac-apache-tomcat-10-image/Dockerfile.openjdk11 +++ b/sac-apache-tomcat-10-image/Dockerfile.openjdk11 @@ -63,7 +63,7 @@ ENV CATALINA_BASE="/usr/share/tomcat" ENV PATH="/usr/share/tomcat/bin:$PATH" CMD ["/usr/lib/tomcat/server", "start"] -EXPOSE 8080 +EXPOSE 8080/tcp RUN set -euo pipefail; mkdir -p /var/log/tomcat; chown --recursive tomcat:tomcat /var/log/tomcat RUN set -euo pipefail; ln -s /usr/share/tomcat /usr/local/tomcat RUN set -euo pipefail; \ diff --git a/sac-apache-tomcat-10-image/Dockerfile.openjdk17 b/sac-apache-tomcat-10-image/Dockerfile.openjdk17 index 09374267b..f07080063 100644 --- a/sac-apache-tomcat-10-image/Dockerfile.openjdk17 +++ b/sac-apache-tomcat-10-image/Dockerfile.openjdk17 @@ -63,7 +63,7 @@ ENV CATALINA_BASE="/usr/share/tomcat" ENV PATH="/usr/share/tomcat/bin:$PATH" CMD ["/usr/lib/tomcat/server", "start"] -EXPOSE 8080 +EXPOSE 8080/tcp RUN set -euo pipefail; mkdir -p /var/log/tomcat; chown --recursive tomcat:tomcat /var/log/tomcat RUN set -euo pipefail; ln -s /usr/share/tomcat /usr/local/tomcat RUN set -euo pipefail; \ diff --git a/sac-apache-tomcat-10-image/Dockerfile.openjdk21 b/sac-apache-tomcat-10-image/Dockerfile.openjdk21 index f01a7cc50..6943dbb46 100644 --- a/sac-apache-tomcat-10-image/Dockerfile.openjdk21 +++ b/sac-apache-tomcat-10-image/Dockerfile.openjdk21 @@ -63,7 +63,7 @@ ENV CATALINA_BASE="/usr/share/tomcat" ENV PATH="/usr/share/tomcat/bin:$PATH" CMD ["/usr/lib/tomcat/server", "start"] -EXPOSE 8080 +EXPOSE 8080/tcp RUN set -euo pipefail; mkdir -p /var/log/tomcat; chown --recursive tomcat:tomcat /var/log/tomcat RUN set -euo pipefail; ln -s /usr/share/tomcat /usr/local/tomcat RUN set -euo pipefail; \ diff --git a/sac-apache-tomcat-10-image/sac-apache-tomcat-10-image.changes b/sac-apache-tomcat-10-image/sac-apache-tomcat-10-image.changes index 63cf982c3..644bae918 100644 --- a/sac-apache-tomcat-10-image/sac-apache-tomcat-10-image.changes +++ b/sac-apache-tomcat-10-image/sac-apache-tomcat-10-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Tue Oct 29 15:30:53 UTC 2024 - SUSE Update Bot diff --git a/sac-postfix-image/Dockerfile b/sac-postfix-image/Dockerfile index 8c4d104ff..c5b7e21d1 100644 --- a/sac-postfix-image/Dockerfile +++ b/sac-postfix-image/Dockerfile @@ -54,7 +54,7 @@ LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%" LABEL io.artifacthub.package.readme-url="%SOURCEURL%/README.md" ENTRYPOINT ["/entrypoint/entrypoint.sh"] CMD ["postfix", "start-fg"] -EXPOSE 25 465 587 +EXPOSE 25/tcp 465/tcp 587/tcp RUN set -euo pipefail; mkdir -p /entrypoint/ldap COPY entrypoint.sles.sh /entrypoint/entrypoint.sh RUN set -euo pipefail; chmod +x /entrypoint/entrypoint.sh diff --git a/sac-postfix-image/sac-postfix-image.changes b/sac-postfix-image/sac-postfix-image.changes index 009930a8e..380962c64 100644 --- a/sac-postfix-image/sac-postfix-image.changes +++ b/sac-postfix-image/sac-postfix-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 31 16:12:08 UTC 2024 - SUSE Update Bot + +- be explicit in protocol for expose statement + ------------------------------------------------------------------- Mon Oct 28 09:18:49 UTC 2024 - SUSE Update Bot