Namespace
activiti
Image / Tag
activiti-modeling-app:7.1.0-M17.5
Content Digest
sha256:35d18543c0ca98bac50ef29534afb0e868facf21035b012a68e999c15516080b
Details
Created

2022-03-23 17:15:10 UTC

Size

14 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
APP_ALLOW_CUSTOM_RESOURCES

true

APP_CONFIG_APPS_DEPLOYED

[]

APP_CONFIG_AUTH_TYPE

OAUTH

APP_CONFIG_BPM_HOST

{protocol}//{hostname}{:port}

APP_CONFIG_DISABLED_EXAMPLE_PROJECTS

true

APP_CONFIG_ECM_HOST

{protocol}//{hostname}{:port}

APP_CONFIG_ENABLE_CUSTOM_CONNECTORS

true

APP_CONFIG_IDENTITY_HOST

{protocol}//{hostname}{:port}/auth/admin/realms/alfresco

APP_CONFIG_NOTIFICATION_LAST

4000

APP_CONFIG_OAUTH2_CLIENTID

activiti

APP_CONFIG_OAUTH2_HOST

{protocol}//{hostname}{:port}/auth/realms/alfresco

APP_CONFIG_OAUTH2_IMPLICIT_FLOW

true

APP_CONFIG_OAUTH2_REDIRECT_LOGIN

/

APP_CONFIG_OAUTH2_REDIRECT_LOGOUT

/

APP_CONFIG_OAUTH2_REDIRECT_SILENT_IFRAME_URI

{protocol}//{hostname}{:port}/assets/silent-refresh.html

APP_CONFIG_OAUTH2_SILENT_LOGIN

true

APP_CONFIG_PROVIDER

ALL

APP_CONFIG_SHOW_NOTIFICATION_HISTORY

true

BASE_PATH

/

NGINX_ENVSUBST_OUTPUT_DIR

/etc/nginx/conf.d

NGINX_VERSION

1.19.3

NJS_VERSION

0.4.4

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1

SERVER_PORT

8080


Layers

[#000] sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c - 19.03% (2.67 MB)

[#001] sha256:afc5aa2635e83da917b2f787c1b55aa3d98ae6a4216f7cd9b6f54d6c5fbf6584 - 46.81% (6.56 MB)

[#002] sha256:1d6235c5b72c111de165377a5a9c83889051dd52ae9ea3b3af7692fb9fcdef72 - 0.03% (5 KB)

[#003] sha256:7b66dfc760f4bf1c88c3c8a4f12560cc13bbbd4aa5a25bdf145479db957c0e05 - 0.0% (602 Bytes)

[#004] sha256:95a71d6e7714f0430a88c1686562df0b9e6f469715a60c55a616f6c45cdb64a9 - 0.01% (881 Bytes)

[#005] sha256:596ced4cb7a8ae56549eb0b76de2a2e38a47531df496573ac1cce30492a7e457 - 0.0% (668 Bytes)

[#006] sha256:d5ca60329a16a9282beb54bdd442bfe97909bfd481dc154d5c7b6dcd22e7c5c2 - 0.01% (844 Bytes)

[#007] sha256:b968f5ef4b0f867334930beedab281d0b0f1ec238363bbfb39f8c17fbc8a260b - 34.08% (4.78 MB)

[#008] sha256:9df8395ef83edd0906ff15b509d73a60e9d788c709004724c1bb9f96d52f0f17 - 0.01% (1.18 KB)

[#009] sha256:4efbdd67477da8963f90ec43b0c758ac4349bfef43348aabaee31e4dbcb64091 - 0.0% (648 Bytes)


History
2020-05-29 21:19:46 UTC

/bin/sh -c #(nop) ADD file:c92c248239f8c7b9b3c067650954815f391b7bcb09023f984972c082ace2a8d0 in /

2020-05-29 21:19:46 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2020-09-17 19:59:05 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-10-06 23:19:00 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.19.3

2020-10-06 23:19:00 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.4.4

2020-10-06 23:19:01 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1

2020-10-06 23:19:10 UTC

/bin/sh -c set -x && addgroup -g 101 -S nginx && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${PKG_RELEASE} " && case "$apkArch" in x86_64) set -x && KEY_SHA512="e7fa8303923d9b95db37a77ad46c68fd4755ff935d0a534d26eba83de193c76166c68bfe7f65471bf8881004ef4aa6df3e34689c305662750c0172fca5d8552a *stdin" && apk add --no-cache --virtual .cert-deps openssl && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if [ "$(openssl rsa -pubin -in /tmp/nginx_signing.rsa.pub -text -noout | openssl sha512 -r)" = "$KEY_SHA512" ]; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk del .cert-deps && apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages ;; *) set -x && tempDir="$(mktemp -d)" && chown nobody:nobody $tempDir && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev perl-dev libedit-dev mercurial bash alpine-sdk findutils && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && hg clone https://hg.nginx.org/pkg-oss && cd pkg-oss && hg up ${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make all && apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -n "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && if [ -n "/etc/apk/keys/nginx_signing.rsa.pub" ]; then rm -f /etc/apk/keys/nginx_signing.rsa.pub; fi && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del .gettext && mv /tmp/envsubst /usr/local/bin/ && apk add --no-cache tzdata && apk add --no-cache curl ca-certificates && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-10-06 23:19:10 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-10-06 23:19:11 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-10-06 23:19:11 UTC

/bin/sh -c #(nop) COPY file:b1ff593cf78e6c6909b24179c9b9104f7ffcb7b0ac04278e7c7aab34a23cf517 in /docker-entrypoint.d

2020-10-06 23:19:11 UTC

/bin/sh -c #(nop) COPY file:b9f60b0c2ae1d910ff3c60f6fa37501a7931e8a2aa46971e2bbb1f0b68fb0a5a in /docker-entrypoint.d

2020-10-06 23:19:12 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-10-06 23:19:13 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-10-06 23:19:14 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-10-06 23:19:14 UTC

/bin/sh -c #(nop) USER 101

2020-10-06 23:19:14 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

2022-03-23 17:15:06 UTC

/bin/sh -c #(nop) ARG PROJECT_NAME

2022-03-23 17:15:06 UTC

/bin/sh -c #(nop) COPY file:c6f34dde4bfcdbdbdde7881cea42ab3e309076845cb093ccce75ee60a391d8f5 in /etc/nginx/templates/

2022-03-23 17:15:07 UTC

/bin/sh -c #(nop) COPY dir:3dd24186cd98c4fe2e51ef48b850088f9d10e4f35de5544e0d739c0c35e10ec9 in /usr/share/nginx/html/

2022-03-23 17:15:07 UTC

/bin/sh -c #(nop) COPY file:1177b8f007d0bcbc6f4e1dda0503b85f292a8e467a4edd9acca8d72a5585de8a in /etc/nginx/templates/app.config.json.template

2022-03-23 17:15:07 UTC

/bin/sh -c #(nop) USER root

2022-03-23 17:15:07 UTC

|1 PROJECT_NAME=modeling-ce /bin/sh -c chmod a+w -R /etc/nginx/conf.d

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) USER 101

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV SERVER_PORT=8080

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV BASE_PATH=/

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx/conf.d

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_IDENTITY_HOST={protocol}//{hostname}{:port}/auth/admin/realms/alfresco

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_HOST={protocol}//{hostname}{:port}/auth/realms/alfresco

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_BPM_HOST={protocol}//{hostname}{:port}

2022-03-23 17:15:08 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_ECM_HOST={protocol}//{hostname}{:port}

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_PROVIDER=ALL

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_AUTH_TYPE=OAUTH

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_CLIENTID=activiti

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_IMPLICIT_FLOW=true

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_SILENT_LOGIN=true

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_REDIRECT_SILENT_IFRAME_URI={protocol}//{hostname}{:port}/assets/silent-refresh.html

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_REDIRECT_LOGIN=/

2022-03-23 17:15:09 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_OAUTH2_REDIRECT_LOGOUT=/

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_APPS_DEPLOYED=[]

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_ENABLE_CUSTOM_CONNECTORS=true

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_ALLOW_CUSTOM_RESOURCES=true

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_NOTIFICATION_LAST=4000

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_SHOW_NOTIFICATION_HISTORY=true

2022-03-23 17:15:10 UTC

/bin/sh -c #(nop) ENV APP_CONFIG_DISABLED_EXAMPLE_PROJECTS=true

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete