22 lines
431 B
YAML
22 lines
431 B
YAML
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
|
|
|