Skip to content

Latest commit

 

History

History
64 lines (57 loc) · 1.26 KB

File metadata and controls

64 lines (57 loc) · 1.26 KB

Docker compose instruction

Run docker compose

$> docker compose up

OU

$> docker-compose up

En fonction de la version de docker

Now your postgres database run on 192.168.3.2:5432

PgAdmin4

Connect to pgadmin

{
  "email": "admin@admin.com",
  "pwd": "postgres"
}

Connect to database with pgadmin

  1. Right clic on "Server";
  2. Click on "Register" > "Server";
  3. Set name : "csim"
  4. Go to "Connection" tab
  5. Set Host name/address : "192.168.3.2"
  6. Set username : postgres
  7. Set password : postgres
  8. Click on save

Check tables

At pgAdmin4 develop tree structure :

Servers
│  
└── Your serveur database name
    │  
    └── Databases
        │  
        └── csim
            │  
            └── Schemas
                │  
                └── public
                    │  
                    └── Tables
                        │  
                        ├── crypto_stock_markets
                        │
                        ├── markets
                        │
                        └── [...]

Query tool

  1. Right click on "Schemas" in tree structure
  2. Choose "Query tool"