Skip to content

Commit

Permalink
Merge pull request #27 from Qoyyuum/master
Browse files Browse the repository at this point in the history
✨ pgAdmin
  • Loading branch information
devrimgunduz authored Dec 12, 2022
2 parents 194f87b + 2e5cc89 commit 0ad9b9a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ Example usage:

SELECT * FROM film WHERE fulltext @@ to_tsquery('fate&india');

pgAdmin is included in the docker-compose.

Navigate to the URL : http://localhost:5050/
Default Username: [email protected]
Default Password: root

## PARTITIONED TABLES

The payment table is designed as a partitioned table with a 7 month timespan
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,12 @@ services:
- 5432
ports:
- 5432:5432
pgadmin:
container_name: pgadmin4_container
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: root
ports:
- "5050:80"

0 comments on commit 0ad9b9a

Please sign in to comment.