From cd6f9493a4fc37f64b621e17b629708545b0408f Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Thu, 13 Nov 2025 13:06:21 +0000 Subject: [PATCH] docs(Dockerfile): specify default PUID and PGID to avoid confusion - Both of these already defaulted to 1000 in the Go code --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 89625123..94d8f7bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -220,8 +220,8 @@ ENV VPN_SERVICE_PROVIDER=pia \ # Extras VERSION_INFORMATION=on \ TZ= \ - PUID= \ - PGID= + PUID=1000 \ + PGID=1000 ENTRYPOINT ["/gluetun-entrypoint"] EXPOSE 8000/tcp 8888/tcp 8388/tcp 8388/udp HEALTHCHECK --interval=5s --timeout=5s --start-period=10s --retries=3 CMD /gluetun-entrypoint healthcheck