Basic data ingestion and analytics

This commit is contained in:
2026-02-09 01:10:52 +01:00
parent 699c826bf0
commit afd195dab9
12 changed files with 3203 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
services:
timescaledb:
image: timescale/timescaledb:latest-pg17
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-example}
POSTGRES_DB: ${POSTGRES_DB:-iot_data}
ports:
- "5432:5432"
volumes:
- timescaledb-data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:latest
ports:
- "6379:6379"
restart: unless-stopped
volumes:
- redis-data:/data
volumes:
timescaledb-data:
redis-data: