cloud creation

This commit is contained in:
Первов Артем
2026-06-17 09:36:58 +03:00
commit 123bd97018
46 changed files with 12285 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
timescaledb:
container_name: cloud-timescaledb
image: timescale/timescaledb:latest-pg17
restart: unless-stopped
environment:
POSTGRES_DB: drill_cloud_v2
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- "5437:5432"
volumes:
- drill-cloud-v2-timescale:/var/lib/postgresql/data
volumes:
drill-cloud-v2-timescale:
networks:
proxy:
external: true