Skip to content

Postgres + TimescaleDB extension + PgAdmin4 for local development / exploration purpose

License

Notifications You must be signed in to change notification settings

shubhamranjan/postgres-pgadmin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Postgres (timescaledb) + PgAdmin

This repo will help with the following:

  • Run postgres with timescaledb extension installed
  • Run pgAdmin 4 with postgres already configured

This will come in handy for local development or for exploring timescaledb

Getting Started

  • Clone the repo
  • Run the following command:
  docker compose up -d
  • Visit http://localhost:5050/ to browse the pgAdmin UI for querying postgres

  • For connecting to postgres from CLI or code, use the following connection string:

  postgresql://postgres:postgres@localhost:5432/<db_name>

where db_name should be replaced with the database you wish to connect to. A database with name postgres is already created on initialisation.