powershell 具有Linux样式提示的PowerShell配置文件和常用Docker命令的别名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 具有Linux样式提示的PowerShell配置文件和常用Docker命令的别名相关的知识,希望对你有一定的参考价值。

function Prompt(){
	$W = Split-Path -leaf -path (Get-Location)
	$prompt = Write-Prompt "$($env:UserName)@$($env:ComputerName):" -ForegroundColor Green
	$prompt += Write-Prompt $W -ForegroundColor DarkCyan
	$prompt += Write-Prompt '>'
	return ' '
}

function Remove-StoppedContainers {
	docker container rm $(docker container ls -q)
}

function Remove-AllContainers {
	docker container rm -f $(docker container ls -aq)
}

function Get-ContainerIPAddress {
	param (
		[string] $id
	)
	& docker inspect --format '{{ .NetworkSettings.Networks.nat.IPAddress }}' $id
}

function Add-ContainerIpToHosts {
	param (
		[string] $name
	)
	$ip = docker inspect --format '{{ .NetworkSettings.Networks.nat.IPAddress }}' $name
	$newEntry = "$ip  $name  #added by d2h# `r`n"
	$path = 'C:\Windows\System32\drivers\etc\hosts'
	$newEntry + (Get-Content $path -Raw) | Set-Content $path
}

Set-Alias drm  Remove-StoppedContainers

Set-Alias drmf  Remove-AllContainers

Set-Alias dip  Get-ContainerIPAddress

Set-Alias d2h  Add-ContainerIpToHosts

以上是关于powershell 具有Linux样式提示的PowerShell配置文件和常用Docker命令的别名的主要内容,如果未能解决你的问题,请参考以下文章

powershell 使用PowerShell在SDL Web中创建管理员用户。使用Tridion CoreService模块(https://github.com/pkjaer/tridion-po

powershell 使用PowerShell在SDL Web中创建管理员用户。使用Tridion CoreService模块(https://github.com/pkjaer/tridion-po

将 PowerShell 用于 Visual Studio 命令提示符

将PowerShell用于Visual Studio命令提示符

怎样启动powershell

powershell提示no such file ordictionary