Minimal web + db stack
Simple two-service stack with port publishing and environment variables.
services:
web:
image: nginx:alpine
ports:
- "8080:80"
db:
image: postgres:16
environment:
POSTGRES_PASSWORD: secretA good starting point for local dev stacks.