Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 681 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 681 Bytes

wildfly

This repository contains Docker images for Wildfly on Azure App Service.

Build

.\scripts\setup.ps1

# Note: $env:wildflyVersion referenced in the following command is set by setup.ps1
docker build --build-arg WILDFLY_VERSION=$env:wildflyVersion -t wildfly .

Deploy and run the sample app to Azure

Run the following commands in powershell:

cd .\samples\petstore

# usePostgresql = $true to use Postgresql. $false to use in-memory db.
..\..\scripts\deployAndRunApp.ps1 -imageName <imagename> [-webAppName <appname>] [-usePostgresql <$true | $false>]

# Example: ..\..\scripts\deployAndRunApp.ps1 -imageName myrepo/myimage:mytag