Amazon ECS is a container service from Amazon AWS Cloud. This allow you to run Docker containers in AWS cloud. It is like Kubernetes. Here are some good resources to get started with Amazon ECS https://github.com/nathanpeck/awesome-ecs https://ecsworkshop.com See AWS […]
Getting Started with Amazon ECS
STEP 1: Creating a Cluster First step is creating a cluster. This can be done with CLI or Amazon Console. To do in CLI, run
1 |
aws ecs create-cluster --cluster CLUSTER_NAME |
If you login to Amazon ECS console, you will see newly created cluster. If you want to delete cluster, you can do with command line
1 |
aws ecs delete-cluster --cluster CLUSTER_NAME |
STEP 2: Creating […]