No description
  • Dockerfile 100%
Find a file
renovate[bot] fc1525cbe4
chore(deps): update actions/checkout action to v6 (#29)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-31 19:48:07 +04:00
.github/workflows chore(deps): update actions/checkout action to v6 (#29) 2025-12-31 19:48:07 +04:00
.dockerignore feat: add cloudnativepg-timescaledb-postgis 2025-03-10 01:12:12 +04:00
.gitignore feat: add cloudnativepg-timescaledb-postgis 2025-03-10 01:12:12 +04:00
Dockerfile chore(deps): update docker/dockerfile docker tag to v1.20 (#28) 2025-12-31 19:47:47 +04:00
LICENSE feat: add cloudnativepg-timescaledb-postgis 2025-03-10 01:12:12 +04:00
README.md docs: update README.md 2025-03-10 09:24:20 +04:00
renovate.json feat: add postgres 18 (#26) 2025-10-31 10:55:09 +04:00

CloudNativePG Containers with TimescaleDB

Build

This repo builds Docker images for CloudNativePG with the TimescaleDB and Postgis extensions installed.

Both versions are automatically updated by Renovate bot, so new releases will be available within a few hours.

Images

Images are available at ghcr.io/eznix86/docker-cloudnativepg-timescale-postgis.

Deployment

Set .spec.imageName in the Cluster to use one of the container images provided by this repository.

For example:

apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
  name: example
spec:
  instances: 3
  imageName: ghcr.io/eznix86/cloudnativepg-timescale-postgis:17-ts2-postgis3
  postgresql:
    shared_preload_libraries:
      - timescaledb
  bootstrap:
    initdb:
      postInitTemplateSQL:
        - CREATE EXTENSION IF NOT EXISTS timescaledb;
        - CREATE EXTENSION IF NOT EXISTS postgis;
        - CREATE EXTENSION IF NOT EXISTS postgis_topology;
        - CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;
        - CREATE EXTENSION IF NOT EXISTS postgis_tiger_geocoder;