I manually translate my docker-compose.yml
to Dockerrun.aws.json. However, it did not work quite right.
But I find out that when I typed eb local run
, eb CLI tool added a file called docker-compose.yml to the .elasticbeanstalk
folder. It seems that eb CLI tool tried to translate Dockerrun.aws.json to docker-compose.yml
. Since I already have a working docker-compose.yml, could I just replace docker-compose.yml
in the .elasticbeanstalk
folder with my correct docker-compose.yml
? Doing manual translation is tedious and I made some mistakes. Does anyone know the quick way to solve this problem? Thanks