21 lines
549 B
YAML
21 lines
549 B
YAML
services:
|
|
timescaledb:
|
|
image: timescale/timescaledb-ha:pg15-all
|
|
hostname: timescaledb
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- timescaledb-data:/home/postgres/pgdata/data
|
|
- timescaledb-logs:/home/postgres/pg_log
|
|
- ./999_init.sh:/docker-entrypoint-initdb.d/999_init.sh
|
|
environment:
|
|
- TIMESCALEDB_TELEMETRY=off
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_DB=${POSTGRES_DB}
|
|
|
|
volumes:
|
|
timescaledb-data:
|
|
timescaledb-logs:
|