Skip to content

Instantly share code, notes, and snippets.

@techbunny
Last active September 13, 2017 18:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techbunny/17b33dd657046c517a6305618d18c5fd to your computer and use it in GitHub Desktop.
Save techbunny/17b33dd657046c517a6305618d18c5fd to your computer and use it in GitHub Desktop.
Getting Started with Containers from MTX

Getting Started with Containers - Your Way

Here you can find a list of some quick tutorials and sample code to get you going quickly with containers on Azure.

On Your Computer

To quickly get started creating containers on your computer, download either Docker for Windows or Docker for Mac. One of the cool features of Docker for Windows is the ability to switch between Linux and Windows containers.

To get started creating containers with Docker, I recommend their Getting Started with Docker guide.

Moving Images to the Cloud

Once you've created a container, you may want to deploy it to a cloud provider. To do that, you'll need to store your container image in a cloud accessible repository. You can use Docker Hub or Azure Container Registry

For Azure Container Registry:

Deploy to Azure Container Instances

Azure Container Instances is the quickest way to get a container into Azure. You are not responsible for building, hosting or managing host resources in your Azure subscription.

Deploy an Azure Container Service

Azure Container Services gives you more control over the container hosts behind your deployed containers, including the size and number of the agents and the orchestrator used. Azure Container Services currently supports Kubernetes, DC/OS and Docker Swarm (legacy Swarm, not Swarm Mode).

Deploy using Azure Service Fabric

Azure Service Fabric is yet another way to exercise deep control over the hosts you use to deploy your containers and microservices. One of the benefits of Service Fabric is the ability to mix containers with applications that aren't container based.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment