Navigating Streamlined Docker container Deployment on AWS
Avinash Dalvi

Avinash Dalvi @avinashdalvi_

About: AWS Community Builder | Full Stack Developer | PHP + Angular + Python + AWS | Speaker | Blogger | Leadership I write blog at https://www.internetkatta.com

Location:
Bangalore
Joined:
Jun 10, 2020

Navigating Streamlined Docker container Deployment on AWS

Publish Date: Jul 14 '23
1 1

As the retirement of Docker Compose integration for ECS (Amazon Elastic Container Service) and ACI (Azure Container Instances) approaches in November 2023, there arises a concern about finding suitable alternatives to enable Docker in ECS
Image description

So any alternative?

Image description

Fortunately, a viable alternative called Compose-ECS has emerged, providing an open-source solution for deploying containerised applications in ECS

Compose ECS ( compose-ecs)

compose-ecs is CLI tool to deploy your application using docker container in AWS ECS service with just few commands.

Example, you can deploy any application or tool like Jenkins, WordPress, Angular, React and many more with just help of docker-compose.yaml file. You just have o select your image from https://hub.docker.com/. Create a file like below

services:
  jenkins:
    image: jenkins/jenkins:lts
    ports:
      - 8080:8080
Enter fullscreen mode Exit fullscreen mode

If you're curious to know how it works and what the difference is between the earlier option and this, then watch this live session.

Connect with us:-

Slack: https://launchpass.com/collabnix

Comments 1 total

  • chneijens
    chneijensApr 25, 2024

    what about Azure Container Instances (ACI)?
    Do you have any alternatives for using docker compose with ACI?

Add comment