From 2abc6382cc353814c22da97f64e37961ee21ce94 Mon Sep 17 00:00:00 2001 From: "S. MohammadMahdi Zamanian" <76493524+MM25Zamanian@users.noreply.github.com> Date: Sat, 30 Dec 2023 14:03:30 +0330 Subject: [PATCH] docs(README.md): pull address & tag Signed-off-by: S. MohammadMahdi Zamanian <76493524+MM25Zamanian@users.noreply.github.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4989518..7d11b6d 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,14 @@ This is a high-performance version of NGINX, which has been enhanced by Alwatr f The recommended method for using the Alwatr Nginx is to place it behind a Kubernetes ingress or a simple edge reverse-proxy like Traefik. In this setup, there's no need to configure edge features such as gzip compression, SSL, etc., or even set up a domain or multiple websites. ```Dockerfile -FROM ghcr.io/alwatr/nginx:1 +FROM ghcr.io/alwatr/nginx:2 ``` ### Serve Progressive Web Apps ```Dockerfile ARG NODE_VERSION=lts -ARG ALWATR_NGINX_VERSION=1 +ARG ALWATR_NGINX_VERSION=2 FROM docker.io/library/node:${NODE_VERSION} as builder WORKDIR /app COPY package.json *.lock ./ @@ -28,7 +28,7 @@ RUN yarn build # --- -FROM ghcr.io/alimd/nginx-pwa:${ALWATR_NGINX_VERSION} as nginx +FROM ghcr.io/alwatr/nginx-pwa:${ALWATR_NGINX_VERSION} as nginx # Config nginx ENV NGINX_ACCESS_LOG="/var/log/nginx/access.log json" # Copy builded files from last stage