-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_Settings.ps1
More file actions
20 lines (14 loc) · 794 Bytes
/
_Settings.ps1
File metadata and controls
20 lines (14 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#Version 18.47.2
#Enter Container Name here
$ContainerName = 'NAV2018'
# Enter your Container Name and Docker Image to use here:
# Image Name for NAV: microsoft/dynamics-nav:2018-cu#-Country - ex microsoft/dynamics-nav:2018-cu9-na for a North American version of NAV 2018
$imageName = 'microsoft/dynamics-nav:2018-na'
# Get-NavArtifactUrl -nav "2018" -country 'na'
$ArtifactURL = 'https://bcartifacts.azureedge.net/onprem/11.0.44345.0/na'
# Nav User Credentials used for New Docker Images
$UserName = 'NAVUser'
$Password = ConvertTo-SecureString "NAVUser123" -AsPlainText -Force
$Credential = New-Object System.Management.Automation.PSCredential ($UserName, $Password)
# NAV License File used for new Docker Images
$licenseFile = 'C:\ProgramData\NavContainerHelper\NAV2018License.flf'