12 lines
277 B
YAML
12 lines
277 B
YAML
services:
|
|
timescaledb:
|
|
container_name: timescaledb
|
|
environment:
|
|
- POSTGRES_USER=timescaleuser
|
|
- POSTGRES_PASSWORD=timescalepwd
|
|
image: timescale/timescaledb:2.7.1-pg14
|
|
ports:
|
|
- 6543:5432
|
|
volumes:
|
|
- /opt/timescaledb:/var/lib/postgresql/data
|