Skip to content

PostgreSQL

Base de datos relacional + PgAdmin.

Arrancar

bash
make postgres-up

Acceso a PgAdmin

Conexión PostgreSQL

CampoValor
Hostlocalhost (o postgres desde otro contenedor)
Puerto5432
DBpostgres
Usuariolglabs
Passwordlgpass
JDBC URLjdbc:postgresql://localhost:5432/postgres

Server pre-configurado para PgAdmin

json
{
  "Servers": {
    "1": {
      "Name": "My PostgreSQL Server",
      "Group": "Servers",
      "Host": "postgres",
      "Port": 5432,
      "MaintenanceDB": "postgres",
      "Username": "lglabs",
      "Password": "lgpass",
      "SSLMode": "prefer",
      "UseSSHTunnel": 0
    }
  }
}

Detener

bash
make postgres-down
make postgres-clean

Publicado bajo licencia MIT.