Skip to content

Instantly share code, notes, and snippets.

View muruganandham's full-sized avatar
:octocat:
Customise for a perfect fit

Muruganandham K muruganandham

:octocat:
Customise for a perfect fit
View GitHub Profile
@muruganandham
muruganandham / docker-compose.yml
Created March 17, 2025 02:23 — forked from Da9el00/docker-compose.yml
How to create a docker-compose setup with PostgreSQL and pgAdmin4
version: "3.8"
services:
db:
container_name: postgres_container
image: postgres
restart: always
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: test_db