Last active
October 3, 2022 04:33
-
-
Save mikepfeiffer/a2066acdedf6e84d50602113bbb46e46 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
az group create --name MySonarServer --location westus2 | |
az container create -g MySonarServer \ | |
--name sonarqubeaci \ | |
--image sonarqube \ | |
--ports 9000 \ | |
--dns-name-label cssonar \ | |
--cpu 2 --memory 3.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment