| Image | Cmd | Size |
| 4416aa9c01c |
-r |
3 KB |
| 41ed4d05c8f |
forego start -r |
1 KB |
| 5b7ea43aa17 |
forego start -r |
4 KB |
| 4e55e5840b7 |
CMD ["forego" "start" "-r"] |
32 B |
| 4a145379d1e |
ENTRYPOINT ["/app/docker-entrypoint.sh"] |
32 B |
| fc3a89ffa94 |
WORKDIR /app/ |
32 B |
| 34cf7d5e176 |
COPY app nginx.tmpl LICENSE /app/ # buildkit |
8 KB |
| b3a534e976e |
COPY network_internal.conf /etc/nginx/ # buildkit |
278 B |
| c292a128c34 |
COPY /usr/local/bin/docker-gen /usr/local/bin/docker-gen # buildkit |
6.3 MB |
| 7ae6bb30567 |
COPY /usr/local/bin/forego /usr/local/bin/forego # buildkit |
2.2 MB |
| 523f5ae1f82 |
RUN |2 NGINX_PROXY_VERSION=1.0.1-6-gc4ad18f DOCKER_GEN_VERSION=0.9.0 /bin/sh -c echo "daemon off;" >> /etc/nginx/nginx.conf &&
sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf &&
sed -i 's/worker_connections 1024/worker_connections 10240/' /etc/nginx/nginx.conf &&
mkdir -p '/etc/nginx/dhparam' # buildkit |
522 B |
| b568df49aaf |
RUN |2 NGINX_PROXY_VERSION=1.0.1-6-gc4ad18f DOCKER_GEN_VERSION=0.9.0 /bin/sh -c apt-get update &&
apt-get install -y -q --no-install-recommends ca-certificates wget &&
apt-get clean &&
rm -r /var/lib/apt/lists/* # buildkit |
356 KB |
| e9dfd7ba370 |
ENV NGINX_PROXY_VERSION=1.0.1-6-gc4ad18f DOCKER_GEN_VERSION=0.9.0 DOCKER_HOST=unix:///tmp/docker.sock |
32 B |
| 5dbc8827776 |
ARG DOCKER_GEN_VERSION |
32 B |
| 7b4c1e64d79 |
ARG NGINX_PROXY_VERSION |
32 B |
| c3f25956d2b |
/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"] |
32 B |
| 4510a8e405f |
/bin/sh -c #(nop) STOPSIGNAL SIGQUIT |
32 B |
| 6e4772a7056 |
/bin/sh -c #(nop) EXPOSE 80 |
32 B |
| 57faba0f349 |
/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"] |
32 B |
| e33c7ccc23b |
/bin/sh -c #(nop) COPY file:09a214a3e07c919af2fb2d7c749ccbc446b8c10eb217366e5a65640ee9edcc25 in /docker-entrypoint.d |
1 KB |
| 6969b96e29f |
/bin/sh -c #(nop) COPY file:0fd5fca330dcd6a7de297435e32af634f29f7132ed0550d342cad9fd20158258 in /docker-entrypoint.d |
667 B |
| 1a6eb01ec0e |
/bin/sh -c #(nop) COPY file:0b866ff3fc1ef5b03c4e6c8c513ae014f691fb05d530257dfffd07035c1b75da in /docker-entrypoint.d |
895 B |
| 9f33a3fd2a2 |
/bin/sh -c #(nop) COPY file:65504f71f5855ca017fb64d502ce873a31b2e0decd75297a8fb0a287f97acf92 in / |
602 B |
| 86af3f8c1d5 |
/bin/sh -c set -x &&
addgroup --system --gid 101 nginx &&
adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx &&
apt-get update &&
apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates &&
NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in hkp://keyserver.ubuntu.com:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" &&
found=yes &&
break; done; test -z "$found" &&
echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" &&
exit 1; apt-get remove --purge --auto-remove -y gnupg1 &&
rm -rf /var/lib/apt/lists/* &&
dpkgArch="$(dpkg --print-architecture)" &&
nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} " &&
case "$dpkgArch" in amd64|arm64) echo "deb https://nginx.org/packages/mainline/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list &&
apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list &&
tempDir="$(mktemp -d)" &&
chmod 777 "$tempDir" &&
savedAptMark="$(apt-mark showmanual)" &&
apt-get update &&
apt-get build-dep -y $nginxPackages &&
( cd "$tempDir" &&
DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) &&
apt-mark showmanual | xargs apt-mark auto > /dev/null &&
{ [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } &&
ls -lAFh "$tempDir" &&
( cd "$tempDir" &&
dpkg-scanpackages . > Packages ) &&
grep '^Package: ' "$tempDir/Packages" &&
echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list &&
apt-get -o Acquire::GzipIndexes=false update ;; esac &&
apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base curl &&
apt-get remove --purge --auto-remove -y &&
rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list &&
if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove &&
rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi &&
ln -sf /dev/stdout /var/log/nginx/access.log &&
ln -sf /dev/stderr /var/log/nginx/error.log &&
mkdir /docker-entrypoint.d |
25.4 MB |
| 34a67007bce |
/bin/sh -c #(nop) ENV PKG_RELEASE=1~bullseye |
32 B |
| 4a14c8a4af9 |
/bin/sh -c #(nop) ENV NJS_VERSION=0.7.3 |
32 B |
| 38ec3ae1211 |
/bin/sh -c #(nop) ENV NGINX_VERSION=1.21.6 |
32 B |
| bfa8f0eba2c |
/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers |
32 B |
| aa3384a87d0 |
/bin/sh -c #(nop) CMD ["bash"] |
32 B |
| fd70e5bd60e |
/bin/sh -c #(nop) ADD file:4a0bb88956083aa56032fdd9601d9b66c39b18c896ba35ea33594cd75621640a in / |
31.4 MB |