From b0d701b0e8aa4f0ad61a595d11e886f6ab4b6b03 Mon Sep 17 00:00:00 2001 From: marlon Date: Fri, 20 Sep 2024 13:59:25 +0000 Subject: [PATCH] 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` --- .env.sample | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.env.sample b/.env.sample index ec1c308..d73ad9c 100644 --- a/.env.sample +++ b/.env.sample @@ -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.49.0