Hey, I've run into sticking point when deploying d...
# deployment-ecs
t
Hey, I've run into sticking point when deploying dagster with ECS. I've configured a postgres for the backend (runs/sensors etc) and setup a grpc server with pipeline code in a separate container. All seems good in terms of the network, but when I run a pipeline I'm faced with these errors?
Copy code
mount_points = [
        {
          containerPath = "/var/run/docker.sock"
          sourceVolume  = "docker_sock"
          readOnly      = true
        }
should this be readOnly = True?
I think its down to docker.sock, the aws docs recommended adding
Copy code
DOCKER_HOST=unix:///var/run/docker.sock >> /etc/ecs/ecs.config
But still no luck. I've attached some of the TF files used to generate this. Any guidance will be greatly appreciated!