You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
284 B

  1. Param(
  2. [Parameter(Mandatory=$true)][string]$agentsFqdn,
  3. [Parameter(Mandatory=$true)][string]$registry
  4. )
  5. (Get-Content template.json) |
  6. Foreach-Object {
  7. $_.Replace("AGENTS_FQDN", $agentsFqdn).Replace("REGISTRY", $registry)
  8. } | Set-Content eShopOnContainers.json