/postgresql

Primary LanguageShellMIT LicenseMIT

postgresql

About this Repo

This is a copy of the 'postgres/10/alpine/' folder from the Git repo of the Docker official image for postgres. See the Docker Hub page for the full readme on how to use this Docker image and for information regarding contributing and issues.


based on standard container: postgres additions:

  • quantile v1.1.2 an aggregation function for PostgreSQL
  • timescaledb v0.7.1 An open-source time-series database optimized for fast ingest and complex queries. Engineered up from PostgreSQL, packaged as an extension. website

to build & run

 docker build --tag postgres --rm=true https://github.com/ballab1/postgreql.git
 mkdir data
 chown postgres:postgres data
 docker run --name postgres -p 5432:5432 -v $PWD/data:/var/lib/pgsql/data -d postgres:latest