🚨 AtomicJar is now part of Docker 🐋! Read the blog

Description

An open-source time-series SQL database optimized for fast ingest and complex queries. Packaged as a PostgreSQL extension.

Examples

var image = DockerImageName.parse("timescale/timescaledb:2.1.0-pg11")
    .asCompatibleSubstituteFor("postgres");
var timescale = new PostgreSQLContainer<>(image);
timescale.start();
timescaleContainer, err := postgres.RunContainer(ctx,
  testcontainers.WithImage("timescale/timescaledb:2.1.0-pg11"),
  postgres.WithDatabase("test"),
  postgres.WithUsername("user"),
  postgres.WithPassword("password"),
)
var timescaleContainer = new PostgreSqlBuilder()
  .WithImage("timescale/timescaledb:2.1.0-pg11")
  .Build();
await timescaleContainer.StartAsync();
const container = await new PostgreSqlContainer(image = "timescale/timescaledb:2.1.0-pg11").start();