Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 555 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 555 Bytes

pgadmin4-ts

pgAdmin 4 Tiny Service

Usage

  • Remember to add the postgres-local docker network to your PostgreSQL services
version: "3.9"
services:
  postgres:
    image: "postgres"
    networks:
      - postgres-local
networks:
  postgres-local:
    name: postgres-local
  • Let's clone and run the tiny service
#!/bin/bash
git clone https://github.com/davkorss/pgadmin4-ts.git
cd pgadmin4-ts
docker-compose up -d --build