Skip to content

Instantly share code, notes, and snippets.

View lc-thanh's full-sized avatar
🇻🇳
Learning Frontend Dev

Le Cong Thanh lc-thanh

🇻🇳
Learning Frontend Dev
View GitHub Profile
@lc-thanh
lc-thanh / [PostgreSQL] docker-compose.yml
Last active March 26, 2025 08:45 — 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