Hey ! What’s the preferred approach for being able...
# deployment-ecs
l
Hey ! What’s the preferred approach for being able to work with docker locally and deploying to ecs? Kind of combination of deploy_ecs and deploy_docker?
j
You can use the
deploy_ecs
example with local simulation by switching the context: https://docs.docker.com/cloud/ecs-integration/#local-simulation But you’ll want to swap out the
RunLauncher
in your
dagster.yaml
when you do this because the
EcsRunLauncher
can only run on a real ECS service (ECS Local Simulation only simulates the ECS metadata endpoints; it doesn’t actually simulate the entire ECS API).
l
Thanks! I’ll check it out