-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mike Zrimsek
committed
Aug 23, 2024
1 parent
abc8501
commit 382c87e
Showing
4 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Vault Warden | ||
|
||
Vault Warden is a lightweight, open-source password manager which focuses on simplicity and security. It is a fork of the Bitwarden server API with some added features. It is written in Rust and uses SQLite as the database backend. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
services: | ||
vaultwarden: | ||
image: vaultwarden/server:latest | ||
container_name: vaultwarden | ||
environment: | ||
SIGNUPS_ALLOWED: "true" | ||
volumes: | ||
- ${CONFIG_DIR}/vaultwarden/data:/data | ||
ports: | ||
- 11001:80 | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
services: | ||
vaultwarden: | ||
image: vaultwarden/server:latest | ||
container_name: vaultwarden | ||
environment: | ||
DOMAIN: "https://${APP_URL}" | ||
SIGNUPS_ALLOWED: "true" | ||
volumes: | ||
- ${CONFIG_DIR}/vaultwarden/data:/data | ||
networks: | ||
- public | ||
labels: | ||
- "traefik.enable=true" | ||
- "traefik.http.routers.vaultwarden.rule=Host(`${APP_URL}`)" | ||
- "traefik.http.routers.vaultwarden.entrypoints=websecure" | ||
- "traefik.http.routers.vaultwarden.tls.certresolver=tlsresolver" | ||
- "traefik.http.routers.vaultwarden.middlewares=authelia@docker" | ||
- "com.centurylinklabs.watchtower.enable=true" | ||
restart: unless-stopped | ||
|
||
networks: | ||
public: | ||
external: | ||
name: ${TRAEFIK_PUBLIC_NETWORK} |