Relay server for Kronoterm cloud. It gets data from cloud and exposes it through REST API to local network.
On your host system that has Docker installed create docker-compose.yml
file with following content.
Update file with your username and password!
services: kronoterm_cloud_relay: image: leskoiam/kronoterm_cloud_relay:latest container_name: kronoterm_cloud_relay restart: unless-stopped ports: - "8555:8555" # Adjust the port mappings as needed environment: # Add your kronoterm cloud username and password - KRONOTERM_CLOUD_USER=your-user - KRONOTERM_CLOUD_PASSWORD=your-password
Spin up the image
docker compose up -d
Navigate to
http://ip-or-host-address:8555/docs
for list of supported API endpoints
Home Assistant has REST integration which can request and post data from relay
.
Refer to Home Assistant Readme for details.
Tail container logs:
docker logs -f kronoterm_cloud_relay
Shut down container:
docker compose down kronoterm_cloud_relay