0

I'm looking to run a number of applications in containers (win and linux) in azure in a large docker swarm. Have it running locally (swarm mode), but I'm struggling to find good info re azure. Should I go with:

*) Container Service/ swarm (not sure if this support windows containers yet)

*) Container Service/ kubernetes (apparently has windows containers in preview)

*) Something else? eg. should I just deploy a batch of vm's in a vnet and roll my own?

Thanks in advance for your help

mb345345
  • 165
  • 6

1 Answers1

0

Try this tutorial: https://learn.microsoft.com/en-us/azure/container-service/dcos-swarm/container-service-swarm-mode-walkthrough

Run with the --windows flag as documented here: https://learn.microsoft.com/en-us/cli/azure/acs?view=azure-cli-latest

brandon-barnett
  • 1,035
  • 9
  • 13
  • Thanks for the response Brandon, I've checked this out, and from the az acs create documentation (https://learn.microsoft.com/en-us/cli/azure/acs?view=azure-cli-latest#az_acs_create) looks like only docker ce is available in acs for windows: --orchestrator-type {Custom, DCOS, DockerCE, Kubernetes, Swarm} – mb345345 Jun 13 '18 at 15:07