Skip to content

Instantly share code, notes, and snippets.

View kafle1's full-sized avatar
🎯
Focusing

Niraj Kafle kafle1

🎯
Focusing
View GitHub Profile
@kafle1
kafle1 / docker-compose.yaml
Last active March 2, 2023 09:35
Postgres test db docker
version: '3'
services:
pgdb:
image: postgres:latest
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"