-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
43 lines (37 loc) · 1.18 KB
/
compose.yaml
File metadata and controls
43 lines (37 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: vaultwarden
x-daemonless:
title: "Vaultwarden"
icon: ":simple-bitwarden:"
category: "Utilities"
description: "Lightweight Bitwarden-compatible password manager server — self-host your passwords, secrets, and secure notes."
upstream_url: "https://github.com/dani-garcia/vaultwarden"
web_url: "https://github.com/dani-garcia/vaultwarden"
freshports_url: "https://www.freshports.org/security/vaultwarden/"
user: "bsd"
mlock: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
SIGNUPS_ALLOWED: "Enable/disable user registration (true/false)"
INVITATIONS_ALLOWED: "Enable/disable user invitations (true/false)"
volumes:
/config: "Data directory (database, attachments, icons)"
ports:
80: "Web UI"
services:
vaultwarden:
image: ghcr.io/daemonless/vaultwarden:latest
container_name: vaultwarden
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- SIGNUPS_ALLOWED=true
volumes:
- /path/to/containers/vaultwarden:/config
ports:
- "80:80"