Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to convert docker-compose.yml to Dockerrun.aws.json?

I have the following docker-compose.yml

web:
  build: .
  ports:
   - "8000:8000"
   - "6076:6076"
   - "6077:6077"
  volumes:
   - .:/code
   - /code/node_modules
  environment:
   NODE_ENV: development
   CLIENT_PORT: 8000
   API_URL: http://radi/api/

I want to convert this file to Dockerrun.aws.json. Please help.

like image 542
Tushar Borole Avatar asked Dec 02 '25 23:12

Tushar Borole


1 Answers

Try using Container Transform:

It can transforms docker-compose, ECS, and Marathon configurations.

Currently, container-transform can parse and convert:

  • Kubernetes Pod specs
  • ECS task definitions
  • Docker-compose configuration files
  • Marathon Application Definitions or Groups of Applications
  • Chronos Task Definitions
like image 124
Duc Filan Avatar answered Dec 05 '25 14:12

Duc Filan