smtp-bridge/README.md

26 lines
410 B
Markdown
Raw Normal View History

2024-09-21 06:23:03 +05:00
## SMTP Bridge
2024-09-21 02:52:59 +05:00
## Deploy
1. Create `compose.yml`
```yml
services:
2024-09-21 06:23:03 +05:00
smtp-bridge:
image: git.shihaam.dev/shihaam/smtp-bridge
2024-09-21 02:52:59 +05:00
restart: always
env_file: .env
ports:
- 2525:2525
```
2. Fill .env
```
2024-09-21 06:23:03 +05:00
TELEGRAM_API_KEY=''
TELEGRAM_DOMAIN='telegram.local'
NTFY_TOKEN='your_ntfy_token_here'
NTFY_URL='https://ntfy.sh'
NTFY_DOMAIN='ntfy.local'
2024-09-21 02:52:59 +05:00
```
3. Start the container `docker compose up -d`