Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

36 lines (28 loc) · 1.08 KB

timescaledb-postgis

the timescaledb-postgis image is discontinued in the timescaledb-docker repo

the timescale/timescaledb-ha docker image includes postgis but has a size of 1.5gb

the size of this mxfactorial/timescaledb-postgis:latest image is approximately 268mb

development only

dependencies:

  • postgresql 16
  • timescaledb 2.15.2
  • postgis 3.4.2

build

# optional
make

run

# 1. start the container
docker run -d -p 5432:5432 --name timescaledb-postgis -e POSTGRES_PASSWORD=password mxfactorial/timescaledb-postgis:latest
# 2. print currently installed extensions
docker exec -e PGPASSWORD=password timescaledb-postgis psql -h localhost -U postgres -c "\dx;"
# 3. connect using your preferred client

clean up

docker stop timescaledb-postgis
docker rm timescaledb-postgis
docker image remove mxfactorial/timescaledb-postgis:latest