Compare commits

..

2 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
2 changed files with 4 additions and 2 deletions
+2
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
+2 -2
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: vaultwarden/server:1.31.0
image: vaultwarden/server:1.32.0
networks:
- proxy
environment:
@@ -39,7 +39,7 @@ 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.8.0+1.31.0"
- "coop-cloud.${STACK_NAME}.version=0.9.0+1.32.0"
- "backupbot.backup=true"
- "backupbot.backup.path=/data"