This repository is intended to be a platform or academic laboratory for database design and implementation. This laboratory is based on Docker technology to lift PostgreSQL 15 and pgAdmin4 services in a Linux environment, mainly.
$ git clone https://github.com/ejdecena/lab_database
$ cd lab_database
$ sudo apt install make
$ make install
$ sudo usermod -aG docker $USER
$ sudo service docker start
close the terninal.$ make run- GO TO http://
{PGADMIN_ADDRESS}:{PGADMIN_PORT} - Username:
user@gmail.com. - Password:
{PGADMIN_DEFAULT_PASSWORD}in.envfile.
When you log in for the first time, you will have to register a server. To do this, right click on the Servers option:
The data for the connection are:
- Host name / address:
postgres_db - Port:
5432 - Database:
{POSTGRES_DB}in.envfile. - Username:
{POSTGRES_USER}in.envfile. - Pass:
{POSTGRES_PASSWORD}in.envfile.
$ make psql$ make logs$ make stop$ make restart$ make reset

