Being that we are running in ECS with only ephemeral storage; and running load-balanced. We need to create and EFS mount for the container /mnt/foundry so that all containers can share their data directory and so that data persist across the container lifecycle.
The Docker Image mounts the volume to data ... --volume <your_data_dir>:/data ...
Being that we are running in ECS with only ephemeral storage; and running load-balanced. We need to create and EFS mount for the container
/mnt/foundry
so that all containers can share their data directory and so that data persist across the container lifecycle.The Docker Image mounts the volume to data
... --volume <your_data_dir>:/data ...