I have setup Azure Container Service using DC/OS + Marathon for deploying Docker containers. So far looks good, I can connect to master node using SSH tunnel and access Mesos and Marathon WebUI as well as hit REST API.
Next, I am trying to deploy a docker container from my private docker repository and I found following article on Marathon website.
https://mesosphere.github.io/marathon/docs/native-docker-private-registry.html
Please see the "Note" section from above URL -
Note: The URI must be accessible by all nodes that may start your application. Approaches may include distributing the file to the local filesystem of all nodes, for example via RSYNC/SCP, or storing it on a shared network drive, for example Amazon S3. It is worth considering the security implications of your chosen approach.
What options does Azure provides for sharing the docker.tar.gz file across all nodes?
Thanks