24 lines
570 B
YAML
24 lines
570 B
YAML
services:
|
|
timescaledb:
|
|
build: ./db
|
|
container_name: tradingagents_timescaledb
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: tradingagents
|
|
POSTGRES_DB: tradingagents
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./seed.sql:/docker-entrypoint-initdb.d/seed.sql
|
|
- timescale_data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres -d tradingagents"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
volumes:
|
|
timescale_data:
|
|
driver: local
|