1 Star 0 Fork 0

学亮/eShopOnAbp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run-tye.ps1 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
<# Check development certificates #>
if (! ( Test-Path ".\etc\dev-cert\localhost.pfx" -PathType Leaf ) ){
Write-Information "Creating dev certificates..."
cd ".\etc\dev-cert"
.\create-certificate.ps1
cd..
cd ..
}
<# Check Docker containers #>
docker network create eshoponabp-network
$requiredServices = @(
'postgres-db',
'rabbitmq',
'redis'
)
foreach ($requiredService in $requiredServices) {
$nameParam = -join("name=", $requiredService)
$serviceRunningStatus = docker ps --filter $nameParam
$isDockerImageUp = $serviceRunningStatus -split " " -contains $requiredService
if( $isDockerImageUp )
{
Write-Host ($requiredService + " [up]")
}
else
{
cd "./etc/docker/"
docker-compose -f docker-compose.infrastructure.yml -f docker-compose.infrastructure.override.yml up -d
cd ../..
break;
}
}
<# Run all services #>
tye run --watch
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yxlcode/eShopOnAbp.git
git@gitee.com:yxlcode/eShopOnAbp.git
yxlcode
eShopOnAbp
eShopOnAbp
main

搜索帮助