-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from Qoyyuum/master
✨ pgAdmin
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |