PolarDB for PostgreSQL

PolarDB for PostgreSQL

A cloud-native database developed by Alibaba Cloud


Quick Start with Docker

Pull the local instance imageopen in new window of PolarDB for PostgreSQL based on local storage. Create and run the container, and try PolarDB-PG instance directly:

# pull the instance image from DockerHub
docker pull polardb/polardb_pg_local_instance
# create and run the container
docker run -it --rm polardb/polardb_pg_local_instance psql
# check
postgres=# SELECT version();
            version
--------------------------------
 PostgreSQL 11.9 (POLARDB 11.9)
(1 row)