Skip to content

Instantly share code, notes, and snippets.

View aaronlyy's full-sized avatar
probably studying

Aaron Levi aaronlyy

probably studying
View GitHub Profile
@aaronlyy
aaronlyy / docker-compose.infra.yaml
Created April 22, 2026 15:00
Docker compose with some basic services that i often use (postgres, adminer, mailpit)
services:
postgres:
image: postgres:16
container_name: postgres
restart: unless-stopped
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports: