Containers/New-Container.ps1

function New-Container {
    Param(
        [Parameter(Mandatory=$false)]
        [string]$Path = (Get-Location),
        [Parameter(Mandatory=$false)]
        [string]$ContainerName = (Split-Path $Path -Leaf)
    )

    New-NavContainer2 -ContainerName $ContainerName -ImageName (Get-ImageNameForRepo $Path) -ErrorAction SilentlyContinue
}

Export-ModuleMember -Function New-Container