Skip to content

Instantly share code, notes, and snippets.

@marrobi
Created June 12, 2017 15:23
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 marrobi/c2d295bcc291e2d46c3c4feda5f87513 to your computer and use it in GitHub Desktop.
Save marrobi/c2d295bcc291e2d46c3c4feda5f87513 to your computer and use it in GitHub Desktop.
Azure Docker VM extension for GeoServer
{
"type": "extensions",
"name": "DockerExtension",
"tags": {
"displayName": "DockerExtension"
},
"apiVersion": "2016-03-30",
"location": "[resourceGroup().location]",
"dependsOn": [
"[resourceId('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
],
"properties": {
"publisher": "Microsoft.Azure.Extensions",
"type": "DockerExtension",
"typeHandlerVersion": "1.2",
"autoUpgradeMinorVersion": true,
"settings": {
"compose": {
"geoserver": {
"image": "winsent/geoserver:2.11",
"ports": [ "8080:8080" ],
}
},
"installonly": "false"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment