Introduction As an increasing number of businesses are migrating to the cloud, managing costs becomes a critical aspect of their AWS (Amazon Web Services) journey. With the vast array of services and configurations available, it can be easy to overspend if cost optimization strategies are not effectively implemented. The subsequent sections explore the top 10 essential strategies to help optimize...
AWS ECS allows you to run and manage Docker containers on clusters of AWS EC2 instances. This is done using task definition files: JSON files holding data describing the containers needed to run a service. It is the AWS equivalent of your everyday docker-compose file. What we want today is to automate the deployment of docker-compose services on AWS, by...
You have probably all heard about Docker, the tool that allow every DevOps to automate the deployment of an application with a disconcerting speed. It's a kind of virtualization that allow independent "containers" to run within a single Linux instance. So having said that, we are assuming that you know what is Docker. In this article, we are going to...