From f4af4b26ebf7428c4979a0a12d883bd0c4164781 Mon Sep 17 00:00:00 2001 From: ducarrozb <83638420+ducarrozb@users.noreply.github.com> Date: Tue, 4 May 2021 10:45:54 +0200 Subject: [PATCH] Fix Dockerfile base image in /README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af93cdb..eb7ff33 100644 --- a/README.md +++ b/README.md @@ -369,7 +369,7 @@ To add settings on a proxy-wide basis, add your configuration file under `/etc/n This can be done in a derived image by creating the file in a `RUN` command or by `COPY`ing the file into `conf.d`: ```Dockerfile -FROM nginxproxy/nginx-proxy +FROM nginxproxy/nginx-proxy:latest RUN { \ echo 'server_tokens off;'; \ echo 'client_max_body_size 100m;'; \