cashlalala / postgresql-pgadmin

docker-compose ,source from khezen/compose-postgres

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postgresql & PgAdmin powered by compose

docker-compose ,source from khezen/compose-postgres remove postgresql External port 5432

Requirements:

  • docker >= 17.12.0+
  • docker-compose

Quick Start

  • Clone or download this repository
  • Go inside of directory, cd postgresql-pgadmin
  • Run this command docker-compose up -d

Environments

This Compose file contains the following environment variables:

  • POSTGRES_USER the default value is postgres
  • POSTGRES_PASSWORD the default value is changeme
  • PGADMIN_PORT the default value is 5050
  • PGADMIN_DEFAULT_EMAIL the default value is pgadmin4@pgadmin.org
  • PGADMIN_DEFAULT_PASSWORD the default value is admin

Access to postgres:

  • postgresql:5432 just access docker containter with the same bridge network
  • Username: postgres (as a default)
  • Password: changeme (as a default)

Access to PgAdmin:

  • URL: http://localhost:5050
  • Username: pgadmin4@pgadmin.org (as a default)
  • Password: admin (as a default)

Add a new server in PgAdmin:

  • Host name/address postgres
  • Port 5432
  • Username as POSTGRES_USER, by default: postgres
  • Password as POSTGRES_PASSWORD, by default changeme

image

About

docker-compose ,source from khezen/compose-postgres

License:MIT License