Skip to content

Instantly share code, notes, and snippets.

@tnolet
Last active December 4, 2017 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnolet/185e35327936e1aae8818a2006f7e7b9 to your computer and use it in GitHub Desktop.
Save tnolet/185e35327936e1aae8818a2006f7e7b9 to your computer and use it in GitHub Desktop.
Azure Container Instances getting started
az group create --name timACI --location eastus
az container create --name simpleservice --image magneticio/simpleservice:1.0.0 --resource-group timACI --ip-address public --port 3000
az container show --name simpleservice --resource-group timACI
Name ResourceGroup ProvisioningState Image IP:ports CPU/Memory OsType Location
------------- --------------- ------------------- ------------------------------ ------------------- --------------- -------- ----------
simpleservice timACI Succeeded magneticio/simpleservice:1.0.0 52.191.116.216:3000 1.0 core/1.5 gb Linux eastus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment