Some checks failed
continuous-integration/drone/push Build is failing
<!-- Thank you for doing recipe maintenance work! Please mark all checklist items which are relevant for your changes. Please remove the checklist items which are not relevant for your changes. Feel free to remove this comment. --> * [x] I have deployed and tested my changes LetsEncrypt challenges passed * [x] I have [updated relevant versions in `abra.sh`](https://docs.coopcloud.tech/maintainers/upgrade/#updating-versions-in-the-abrash) No relevant versions to update * [x] I have made my environment variable changes [backwards compatible](https://docs.coopcloud.tech/maintainers/upgrade/#backwards-compatible-environment-variable-changes) Only new env vars were added * [ ] I have added a [release note entry](https://docs.coopcloud.tech/maintainers/upgrade/#creating-new-release-notes) Unsure if this is necessary but I'm happy to add notes if we want them 😄 Reviewed-on: #103 Reviewed-by: p4u1 <p4u1@noreply.git.coopcloud.tech> Reviewed-by: decentral1se <decentral1se@noreply.git.coopcloud.tech> Co-authored-by: Zigzagill <zigzagill@proton.me> Co-committed-by: Zigzagill <zigzagill@proton.me>
19 lines
423 B
YAML
19 lines
423 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
environment:
|
|
- CLOUDFLARE_EMAIL_FILE=/run/secrets/cf_email
|
|
- CLOUDFLARE_API_KEY_FILE=/run/secrets/cf_api_key
|
|
secrets:
|
|
- cf_email
|
|
- cf_api_key
|
|
|
|
secrets:
|
|
cf_email:
|
|
name: ${STACK_NAME}_cf_email_${SECRET_CLOUDFLARE_EMAIL_VERSION}
|
|
external: true
|
|
cf_api_key:
|
|
name: ${STACK_NAME}_cf_api_key_${SECRET_CLOUDFLARE_API_KEY_VERSION}
|
|
external: true
|