Skip to content

Latest commit

 

History

History
executable file
·
15 lines (8 loc) · 1.19 KB

README.MD

File metadata and controls

executable file
·
15 lines (8 loc) · 1.19 KB

Docker on AWS

The following two exmaples show how to integrate in a dockerized way with AWS.

Use Docker for a static website

This example shows you how to launch a dockerized static website on AWS Fargate. Using Fragate enables you to use EC2 instances without manageing them in a cluster. Going further, the application loadbablancer enbales you to use path based routing to spin up seperated and specific containers as microservices in a decoupled architecture.

Docker within a CICD pipeline

CICD with Docker come sp with a lot of advantages. One very important: docker buildruns within AWS. This example shows you how to launch and use this static website Docker image within a CICD pipeline.

Docker with AWS Batch

If you want to run high resource intensive jobs on AWS with Docker, AWS Batch is the way to go. This example shows how to estimate pi 10k times. I wrote an detailed article, which can be found here.