Last active
December 4, 2017 13:35
-
-
Save tnolet/185e35327936e1aae8818a2006f7e7b9 to your computer and use it in GitHub Desktop.
Azure Container Instances getting started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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