Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ I assume you already know Docker basics: there are plenty of resources and tutor
Here are resources to understand how Docker works internally, where it is going, and what kind of innovation is happening in different part of the ecosystem as it matures: orchestration, networking, storage, management and monitoring.

* [Creating a Docker host machine on Azure](https://docs.docker.com/installation/azure/#creating-a-docker-host-machine-on-azure) from Docker official docs
* [Provisioning an Ubuntu Docker VM from the Azure marketplace in the Azure portal](http://azure.microsoft.com/blog/2015/01/08/introducing-docker-in-microsoft-azure-marketplace/): this is the easiest way to get started with Docker on Azure.
* Azure Docs [Using the Docker VM Extension from Azure Cross-Platform Interface (xplat-cli)](http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-docker-with-xplat-cli/)
* [Running ASP.NET 5 applications in Linux Containers with Docker](http://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx): One word: "Inconceivable!" Try out @ahmetalpbalkan's excellent tutorial.
* [Provisioning an Ubuntu Docker VM from the Azure marketplace in the Azure portal](https://azure.microsoft.com/blog/2015/01/08/introducing-docker-in-microsoft-azure-marketplace/?WT.mc_id=opensource-0000-pachanez): this is the easiest way to get started with Docker on Azure.
* Azure Docs [Using the Docker VM Extension from Azure Cross-Platform Interface (xplat-cli)](https://azure.microsoft.com/documentation/articles/virtual-machines-docker-with-xplat-cli/?WT.mc_id=opensource-0000-pachanez)
* [Running ASP.NET 5 applications in Linux Containers with Docker](https://blogs.msdn.com/b/webdev/archive/2015/01/14/running-asp-net-5-applications-in-linux-containers-with-docker.aspx?WT.mc_id=opensource-0000-pachanez): One word: "Inconceivable!" Try out @ahmetalpbalkan's excellent tutorial.
* [Creating containers](http://crosbymichael.com/creating-containers-part-1.html) @crosbymichael's series on the internals of what containers are is a very good read, to understand how Docker works.
* @jpetazzo's [articles](http://blog.docker.com/author/jerome/) and [decks](http://www.slideshare.net/jpetazzo/) also go pretty deep.
* [Using Fig and Flocker to build, test, deploy and migrate multi-server Dockerized apps](https://clusterhq.com/blog/fig-flocker-multi-server-docker-apps/) One area of innovation for Docker is storage. One issue with Docker is that stateless containers are easy to move to a different host (typically done by an orchestration engine), but stateful containers for database services are tied to a host. Flocker is an interesting answer to this issue, allowing you to snapshot and migrate your data volumes using a port of zfs for Linux. Flocker provides multi host container orchestration, supporting part of the fig format (which will be the format supported in Docker groups), but the most differentiating aspect they provide is the zfs based volume migration capability.
Expand Down