```sh
abra app deploy pocket.aadils.computer
WARN[0007] no versions detected, using latest commit
WARN[0007] no published release discovered for wallabag
+-----------------+----------+-------------+------------------------+----------+
| SERVER | RECIPE | CONFIG | DOMAIN | VERSION |
+-----------------+----------+-------------+------------------------+----------+
| aadils.computer | wallabag | compose.yml | pocket.aadils.computer | 3da361aa |
+-----------------+----------+-------------+------------------------+----------+
? continue with deployment? Yes
INFO[0010] Creating network pocket_aadils_computer_internal
FATA[0010] service app: secret not found: pocket_aadils_computer_db_password_v1
```
may be related to #1?
Ah, I think #1 is something else but realllly looks like it is the cause 🙃 It is related tho (we'll come back to this). To start fixing this, you need to change the following (
which is saying "you need to put DB_PASSWORD=...in your.envto setup the password for wallabag. This is bad because your password is in plain text in a.env` file but the upstream image doesn't support anything better right now.
Let me know if anything is unclear!
Ah, I think #1 is something else but realllly looks like it is the cause 🙃 It is related tho (we'll come back to this). To start fixing this, you need to change the following (https://git.coopcloud.tech/coop-cloud/wallabag/src/commit/3da361aa2e828636deaa32aeafec1b1598be959a/.env.sample#L8-L9):
```
DB_PASSWORD_VERSION=v1
DB_ROOT_PASSWORD_VERSION=v1
```
To:
```
SECRET_DB_PASSWORD_VERSION=v1
SECRET_DB_ROOT_PASSWORD_VERSION=v1
```
Because `abra` looks for `SECRET_...` env vars for versioning secrets.
Don't forget to `abra app secret generate ...`
If you're feeling generous you could fix this in upstream and push a fix to https://git.coopcloud.tech/coop-cloud/wallabag/src/branch/main/.env.sample to add the `SECRET_...` prefixes 🙏
Now, back to #1, you'll notice this comment in https://git.coopcloud.tech/coop-cloud/wallabag/src/commit/3da361aa2e828636deaa32aeafec1b1598be959a/compose.yml#L13-L15 which is saying "you need to put DB_PASSWORD=...` in your `.env` to setup the password for wallabag. This is bad because your password is in plain text in a `.env` file but the upstream image doesn't support anything better right now.
Let me know if anything is unclear!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
may be related to #1?
Ah, I think #1 is something else but realllly looks like it is the cause 🙃 It is related tho (we'll come back to this). To start fixing this, you need to change the following (
To:
Because
abralooks forSECRET_...env vars for versioning secrets.Don't forget to
abra app secret generate ...If you're feeling generous you could fix this in upstream and push a fix to https://git.coopcloud.tech/coop-cloud/wallabag/src/branch/main/.env.sample to add the
SECRET_...prefixes 🙏Now, back to #1, you'll notice this comment in
in your.envto setup the password for wallabag. This is bad because your password is in plain text in a.env` file but the upstream image doesn't support anything better right now.Let me know if anything is unclear!
@decentral1se I updated the .env.sample on git, don't know to add it to a release tho
This works now? Am not sure what changed but 🚀