add httpsms env vars

This commit is contained in:
Elizabeth Hunt 2025-01-02 23:34:46 -08:00
parent 463fa26b06
commit 7b7cc300f9
Signed by: simponic
GPG Key ID: 2909B9A7FF6213EE
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,4 @@
from_phone_number: "{{ lookup('env', 'FROM_PHONE_NUMBER')}}"
to_phone_number: "{{ lookup('env', 'TO_PHONE_NUMBER')}}"
httpsms_api_token: "{{ lookup('env', 'HTTPSMS_API_TOKEN')}}"
httpsms_signing_key: "{{ lookup('env', 'HTTPSMS_SIGNING_KEY')}}"

View File

@ -13,7 +13,10 @@ services:
- FROM_PHONE_NUMBER={{ from_phone_number }}
- TO_PHONE_NUMBER={{ to_phone_number }}
- HTTPSMS_API_TOKEN={{ httpsms_api_token }}
- HTTPSMS_SIGNING_KEY={{ httpsms_signing_key }}
volumes:
- ./db:/app/db
dns:
- {{ nameserver_ip }}
ports:
- "127.0.0.1:19191:8080"