Deploying the app fails on current abra versions with FATA <app/deploy.go:276> failed to create miniflux_app: Error response from daemon: rpc error: code = InvalidArgument desc = expanding env failed: expanding env "ADMIN_PASSWORD={{ secret \"admin_password\" }}": template: expansion:1: function "secret" not defined.
My understanding is that probably the template syntax is outdated and we need to fix that on this recipe.
Deploying the app fails on current `abra` versions with `FATA <app/deploy.go:276> failed to create miniflux_app: Error response from daemon: rpc error: code = InvalidArgument desc = expanding env failed: expanding env "ADMIN_PASSWORD={{ secret \"admin_password\" }}": template: expansion:1: function "secret" not defined`.
My understanding is that probably the template syntax is outdated and we need to fix that on this recipe.
According to what I could read on https://docs.coopcloud.tech/maintainers/handbook/#manage-secret-data, the syntax is terribly outdated in this repo and we need to fix that in order to make this recipe work.
Hacking on the problem earlier today, I noticed that the issue is isolated to the part of compose.yml which tries to expose all of the data including envvars and secrets to the container by calling
which definitely doesn't work but I cannot spend much time figuring out how to fix that atm.
Hacking on the problem earlier today, I noticed that the issue is isolated to the part of `compose.yml` which tries to expose all of the data including envvars and secrets to the container by calling
```yml
- DATABASE_URL=postgres://{{ env "DB_USER" }}:{{ secret "db_password" }}@db/{{ env "DB_NAME" }}?sslmode=disable
- RUN_MIGRATIONS=1
- ADMIN_USERNAME={{ env "MINIFLUX_ADMIN_USERNAME" }}
- ADMIN_PASSWORD={{ secret "admin_password" }}
- BASE_URL=https://{{ env "DOMAIN" }}
```
which definitely doesn't work but I cannot spend much time figuring out how to fix that atm.
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.
Deploying the app fails on current
abraversions withFATA <app/deploy.go:276> failed to create miniflux_app: Error response from daemon: rpc error: code = InvalidArgument desc = expanding env failed: expanding env "ADMIN_PASSWORD={{ secret \"admin_password\" }}": template: expansion:1: function "secret" not defined.My understanding is that probably the template syntax is outdated and we need to fix that on this recipe.
According to what I could read on https://docs.coopcloud.tech/maintainers/handbook/#manage-secret-data, the syntax is terribly outdated in this repo and we need to fix that in order to make this recipe work.
Hacking on the problem earlier today, I noticed that the issue is isolated to the part of
compose.ymlwhich tries to expose all of the data including envvars and secrets to the container by callingwhich definitely doesn't work but I cannot spend much time figuring out how to fix that atm.