A simple RESTful API for a personal blogging platform built with Go, Gin, PostgreSQL, and Docker.
git clone https://github.com/luisfucros/blog-api.git
cd blog-api# Build and start all services
docker-compose up --build
# Or run in detached mode
docker-compose up --build -dcurl http://localhost:8080/health{ "status": "ok" }docker-compose logs -f
# Logs from a specific service
docker-compose logs -f api
docker-compose logs -f postgres 5. Stop the Applicationdocker-compose downdocker-compose down -v