Posts by Steve

Steve's profile picture

Containerising a FastAPI App with Docker for AWS Deployment - Part 4

Improved deployment workflows (CI/CD ready) Docker enables modern deployment pipelines: Build once Test the image Deploy the same artefact to staging and production This reduces risk and ensures that what you tested is exactly what users see. In AWS, this pairs well with: ECR (image storage) ECS deployments automated pipelines (e.g. GitHub Actions)

Steve's profile picture

Containerising a FastAPI App with Docker for AWS Deployment - Part 3

Simplified deployment to AWS ECS When deploying to Amazon ECS, Docker becomes the standard unit of deployment. Instead of configuring servers manually, you simply: Build a Docker image Push it to a registry (like ECR) Run it as a task in ECS or AWS Fargate AWS then handles: provisioning compute running containers restarting failed tasks scaling (if configured) This removes the need to manage servers directly.