Add initial configuration files and monitoring script for ESP32 integration

This commit is contained in:
Space-Banane
2026-01-31 14:23:37 +01:00
parent b75a69caef
commit 17dc69ce4c
6 changed files with 357 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
heart-listener:
image: python:3.14-slim
container_name: uptime-heart-listener
restart: unless-stopped
env_file:
- .env
command: >
bash -c "pip install -r requirements.txt && python listen.py"
volumes:
- ./:/app
network_mode: host