Bitwarden 密碼管理 Opensource版 Vaultwarden

vi dockercompose_vaultwarden.yml
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
environment:
#DOMAIN: "https://vaultwarden.example.com" # required when using a reverse proxy; your domain; vaultwarden needs to know it's https to work properly with attachments
SIGNUPS_ALLOWED: "true" # Deactivate this with "false" after you have created your account so that no strangers can register
volumes:
- volume:/data # the path before the : can be changed
ports:
- 11001:80 # you can replace the 11001 with your preferred port
network_mode: bridge
volumes:
volume:
driver: local

docker compose -p vaultwarden -f dockercompose_vaultwarden.yml up -d

Comments

No comments yet. Why don’t you start the discussion?

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

*