I have a multi-container (docker compose) application. I would like to scale it offline on AWS Batch for processing large volumes of data on S3. My .yml file for docker compose looks something like this:
version: '2'
services:
container1:
container_name:
image:
ports:
container2:
container_name:
image:
depends_on: container1
ports:
I, unfortunately, cannot find any examples or tutorials online dealing with such a case. Can anyone help me understand how should I approach this problem?