Melora Hugues
bd14b3c731
All checks were successful
continuous-integration/drone/push Build is passing
This commit allows using an external unix exporter to send the messages instead of directly sending the messages to Telegram
17 lines
519 B
YAML
17 lines
519 B
YAML
services:
|
|
telegram_exporter:
|
|
container_name: telegram_exporter
|
|
image: git.faercol.me/notification/telegram-notifier:latest
|
|
environment:
|
|
- SOCK_PATH=/input/telegram.sock
|
|
volumes:
|
|
- './build/config/exporter:/config'
|
|
- './build/run:/input'
|
|
|
|
ip_tracker:
|
|
container_name: ip_tracker
|
|
image: git.faercol.me/faercol/public-ip-tracker:latest
|
|
# Volumes store your data between container upgrades
|
|
volumes:
|
|
- './build/config/tracker:/config'
|
|
- './build/run:/output'
|