Compare commits

..

12 Commits

Author SHA1 Message Date
marlon b0d701b0e8 Define $COMPOSE_FILE in config to fix abra app deploy error
By default, the config options provided in the template fail because $COMPOSE_FILE is not set, leading to an error `[abra recipe path] is a directory` when running `abra app deploy`. This is fixed by setting `$COMPOSE_FILE` to `compose.yml`
2024-09-20 13:59:25 +00:00
javielico 7f60d33d21 chore: publish 0.9.0+1.32.0 release 2024-08-26 18:07:07 +01:00
p4u1 57a40cfaa1 chore: publish 0.8.0+1.31.0 release 2024-07-19 18:55:59 +02:00
knoflook 373db38548 feat: add smtp support 2024-07-09 15:37:09 +02:00
javielico 4c50e82865 chore: publish 1.2.0+1.30.5 release 2024-03-18 15:00:09 +00:00
javielico 06c0d8ffd4 chore: publish 1.1.0+1.30.5 release 2024-03-18 14:55:49 +00:00
javielico 371fa36d15 chore: publish 1.0.0+1.30.5 release 2024-03-18 14:54:20 +00:00
p4u1 c3dbb3e4dd chore: publish 0.7.2+1.30.3 release 2024-02-13 17:50:11 +01:00
3wordchant 8ef06543d2 chore: publish 0.7.1+1.30.1 release 2023-11-20 12:55:18 +00:00
decentral1se c59446cca2 Merge pull request 'add config for backup command' (#2) from p4u1/vaultwarden:enable-backup into main
Reviewed-on: coop-cloud/vaultwarden#2
2023-11-06 23:11:14 +00:00
p4u1 88210401bd add config for backup command 2023-11-06 21:26:00 +01:00
3wordchant 94a6b11bc8 chore: publish 0.7.0+1.30.0 release 2023-11-06 13:25:30 +00:00
5 changed files with 37 additions and 3 deletions
+12
View File
@@ -3,6 +3,8 @@ TYPE=vaultwarden
DOMAIN=vaultwarden.example.com
LETS_ENCRYPT_ENV=production
COMPOSE_FILE="compose.yml"
WEBSOCKET_ENABLED=true
SIGNUPS_ALLOWED=true
@@ -12,3 +14,13 @@ LOG_FILE=/data/vaultwarden.log
LOG_LEVEL=warn
SECRET_ADMIN_TOKEN_VERSION=v1 # length=48
## SMTP settings
#COMPOSE_FILE="$COMPOSE_FILE:compose.smtp.yml"
#SECRET_SMTP_PASSWORD_VERSION=v1
#SMTP_FROM=noreply@example.com
#SMTP_USERNAME=noreply@example.com
#SMTP_HOST=mail.example.com
#SMTP_PORT=587
#SMTP_SECURITY=starttls
+1 -1
View File
@@ -1,4 +1,4 @@
export APP_ENTRYPOINT_VERSION=v1
export APP_ENTRYPOINT_VERSION=v2
APP_DIR="app:/data"
_backup_app() {
+19
View File
@@ -0,0 +1,19 @@
---
version: "3.8"
services:
app:
secrets:
- smtp_password
environment:
- "SMTP_PASSWORD_FILE=/run/secrets/smtp_password"
- "SMTP_FROM"
- "SMTP_USERNAME"
- "SMTP_HOST"
- "SMTP_PORT"
- "SMTP_SECURITY"
secrets:
smtp_password:
external: true
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
+4 -2
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: vaultwarden/server:1.29.2
image: vaultwarden/server:1.32.0
networks:
- proxy
environment:
@@ -39,7 +39,9 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=0.6.0+1.29.2"
- "coop-cloud.${STACK_NAME}.version=0.9.0+1.32.0"
- "backupbot.backup=true"
- "backupbot.backup.path=/data"
volumes:
vaultwarden_data:
+1
View File
@@ -25,6 +25,7 @@ file_env() {
}
file_env "ADMIN_TOKEN"
file_env "SMTP_PASSWORD"
# upstream startup command
# https://github.com/dani-garcia/vaultwarden/blob/60ed5ff99d15dec0b82c85987f9a3e244b8bde91/docker/Dockerfile.j2#L254