Hello, I'm trying to deploy dagit and daemon in a ...
# ask-community
d
Hello, I'm trying to deploy dagit and daemon in a multi container application using Azure App Service. I want to use DockerRunLauncher to launch individual runs. The problem that I have is that my docker compose needs to mapp the following volumes (as per the documentation):
Copy code
volumes:
      # Make docker client accessible so we can launch containers using host docker
      - /var/run/docker.sock:/var/run/docker.sock
      - /tmp/io_manager_storage:/tmp/io_manager_storage
In order for this to work I need to create an Azure File Share where I define the mount paths. But mount paths with dot in it are not allowed, thus I'm not able use DockerRunLauncher. Previously I was doing this in a VM, but I'm trying to reduce costs. Any ideas how this could be done, or simply not possible?