A ready-to-use Docker image for TimescaleDB (PostgreSQL) with the pg_idkit extension pre-installed and initialized. Ideal for projects requiring scalable time-series data and unique ID generation.
timescale/timescaledb:latest-pg17)pg_idkit extensiondocker pull ja7adr/tsdb-idkit:latest-17
docker run -d \
--name tsdb-idkit \
-e POSTGRES_PASSWORD=yourpassword \
-p 5432:5432 \
ja7adr/tsdb-idkit
version: '3.8'
services:
db:
image: ja7adr/tsdb-idkit
environment:
POSTGRES_PASSWORD: yourpassword
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/postgresql/data
volumes:
db_data:
pg_idkit extension is installed and available for use.init-pg_idkit.sh, init.sql) are included for automatic setup.To add your own initialization scripts, place them in the /docker-entrypoint-initdb.d/ directory in a derived image.
This project is provided under the same license as the upstream TimescaleDB and pg_idkit projects. See their respective repositories for details.
Content type
Image
Digest
sha256:758500242…
Size
263.1 MB
Last updated
about 1 year ago
docker pull ja7adr/tsdb-idkit:latest-17