From c3f867fc305d5a243033eac5e07ddf037ba4c79c Mon Sep 17 00:00:00 2001 From: Jose A Hernandez Date: Mon, 27 Dec 2021 12:51:17 -0600 Subject: [PATCH] Updated Starting a Container (markdown) --- Starting-a-Container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Starting-a-Container.md b/Starting-a-Container.md index d8a7f38..50dfb33 100644 --- a/Starting-a-Container.md +++ b/Starting-a-Container.md @@ -16,7 +16,7 @@ sudo podman run -d --name vaultwarden -v vw-data:/data/:Z -p 80:80 vaultwarden/s This will preserve any persistent data under `/vw-data/`, you can adapt the path to whatever suits you. -The service will be exposed on host-port 80 or 8080. +The service will be exposed on host-port 80 or 8080. By default, non-root containers are not allowed to use privileged ports (<1024), hence the need to change the port vaultwarden listens on by passing the ROCKET_PORT environmental variable along with the port mappings. For non-x86 hardware or to run specific version, you can [[choose some other image|Which-container-image-to-use]].