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?
docker-compose up...
They force us to use docker for this service, but then we have to pass env variables and into the job anyway which IMO eliminates one of the better features of docker (bundling.env
file and callingdocker-compose
) – Insubstantial