From f07fa7a91d22f063bc09e335f63c86abaa67d728 Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 5 Jan 2025 14:52:03 -0700 Subject: [PATCH] Use lower UID/GID --- README.md | 2 +- latest/Dockerfile | 4 ++-- testing/Dockerfile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e646a6e..a812cc0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ### Features & usage - Built on the [official Alpine-based image](https://github.com/dani-garcia/vaultwarden/tree/main/docker), to be used as a drop-in replacement. -- Unprivileged image: you should check your volumes' permissions (eg `/data`), default UID/GID is 700003. Default port is 8080/tcp. +- Unprivileged image: you should check your volumes' permissions (eg `/data`), default UID/GID is 200003. Default port is 8080/tcp. ### Sample Docker Compose config diff --git a/latest/Dockerfile b/latest/Dockerfile index e768e5d..c85d687 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -1,6 +1,6 @@ ARG VERSION=1.32.7 -ARG UID=700003 -ARG GID=700003 +ARG UID=200003 +ARG GID=200003 FROM ghcr.io/dani-garcia/vaultwarden:${VERSION}-alpine diff --git a/testing/Dockerfile b/testing/Dockerfile index b8e89c1..6212e34 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -1,5 +1,5 @@ -ARG UID=700003 -ARG GID=700003 +ARG UID=200003 +ARG GID=200003 FROM ghcr.io/dani-garcia/vaultwarden:testing-alpine