chore: update lake datasets, add new monitoring locations, and introduce docker-compose infrastructure

This commit is contained in:
David Fencl
2026-06-13 13:09:26 +02:00
parent c8fe97078d
commit 62d69fbb1e
77 changed files with 365882 additions and 916 deletions
+30
View File
@@ -0,0 +1,30 @@
version: '3.8'
services:
db:
image: timescale/timescaledb:latest-pg16
container_name: hladinator-db
restart: always
environment:
POSTGRES_DB: hladinator
POSTGRES_USER: hladinator_user
POSTGRES_PASSWORD: hladinator_db_password_change_me
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
web:
build:
context: .
dockerfile: Dockerfile
container_name: hladinator-web
restart: always
ports:
- "80:80"
depends_on:
- db
volumes:
pgdata:
driver: local