commit b9d73626c49d2475320db6a3c7fc29e0e8a2af7b Author: Teddy Date: Sun Feb 15 16:29:54 2026 +0000 init diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..ed3f255 --- /dev/null +++ b/compose.yml @@ -0,0 +1,16 @@ +services: + vaultwarden: + image: docker.io/vaultwarden/server:latest + container_name: vaultwarden + restart: unless-stopped + environment: + - DOMAIN=https://vault.roysland.net + - SIGNUPS_ALLOWED=false + - ADMIN_TOKEN=your-super-secret-admin-token-change-this + volumes: + - vaultwarden_data:/data + ports: + - "8222:80" + +volumes: + vaultwarden_data: