I have an Azure Container Service setup using DC / OS + Marathon to deploy Docker containers. It still looks good, I can connect to the master node using the SSH tunnel and access the Mesos and Marathon WebUI, and also click the REST API.
Next, I'm trying to deploy a docker container from my private docker repository, and I found the following article on the Marathon website.
https://mesosphere.imtqy.com/marathon/docs/native-docker-private-registry.html
See the "Note" section above the URL -
Note The URI must be accessible to all nodes that can run your application. Approaches may include distributing a file to the local file system of all nodes, for example via RSYNC / SCP, or storing it on a shared network drive, such as Amazon S3. Consider the implications for your chosen approach to security.
What options does Azure provide for sharing the docker.tar.gz file on all nodes?
thanks
source share