Skip to content

Commit

Permalink
Add file
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenseifert committed Dec 31, 2024
1 parent 8e72e6a commit e96cbc9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .AL-Go/createContainer.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#
# Create a local Docker container development environment
#

# Default Credentials
$secpasswd = ConvertTo-SecureString "password" -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential ("admin", $secpasswd)

# Create Container
$containerName = 'pegboard'
.\.AL-Go\localDevEnv.ps1 -containerName $containerName -auth UserPassword -credential $credential -accept_insiderEula -licenseFileUrl "none"

# Install any dependencies for local development

0 comments on commit e96cbc9

Please sign in to comment.