在 Windows Server Container 中运行 Azure Storage Emulator(三):运行在容器中
2021-05-03 06:27
标签:account power name san -- == empty figure ima 上一节中,我们已经准备好了 SQL Server,那么接下来,我们要把 ASE 放到容器里了。 首先,新建 Start.ps1,内容如下: Dockerfile: 或许把 AzureStorageEmulator.exe" init 放到 Dockerfile 里也是个好主意,但是这样每个环境都要 build 不同的 image,这不是我想要的。 现在可以 Build 我们的 image 了: 为了使用 gMSA 运行容器,还有一步(有关容器中使用 gMSA,请见我的另一篇博文:《在 Windows 容器中使用 gMSA》): Launch! 运行结果: 请无视掉里面的两个错误,配置 Azure Storage Explorer 连接: 运行结果: 现在,我们可以修改 Web.Debug.config 来把连接串 transform 一下了: 不要问我连接串中的 URL 为什么长成这样子,因为你肯定没认真看第一节:) 在 Windows Server Container 中运行 Azure Storage Emulator(三):运行在容器中 标签:account power name san -- == empty figure ima 原文地址:http://www.cnblogs.com/lighterz/p/7750116.html 1 param(
2 [Parameter(Mandatory=$true)][string]$HostName,
3 [string]$AccountName,
4 [string]$AuthKey,
5 [string]$SqlServerInstance)
6
7 # Initialized?
8 if (Test-Path Initialized)
9 {
10 &"C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start -inporcess
11 }
12
13 if ([string]::IsNullOrEmpty($AccountName))
14 {
15 Write-Output "AccountName argument not specified, use the default: devstoreaccount1"
16 $AccountName = "devstoreaccount1"
17 }
18 if ([string]::IsNullOrEmpty($AuthKey))
19 {
20 Write-Output "AuthKey argument not specified, use the default: Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="
21 $AuthKey = "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="
22 }
23 if ([string]::IsNullOrEmpty($SqlServerInstance))
24 {
25 Write-Output "SqlServerInstance argument not specified, use the default: (localdb)\MSSQLLocalDB"
26 $SqlServerInstance = "(localdb)\MSSQLLocalDB"
27 }
28
29 # Replace the configuration
30 $config = "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe.config"
31 (get-content $config)`
32 -Replace "
# escape=`
FROM microsoft/windowsservercore
ADD https://go.microsoft.com/fwlink/?linkid=717179&clcid=0x409 MicrosoftAzureStorageEmulator.msi
RUN msiexec /q /i MicrosoftAzureStorageEmulator.msi
RUN del MicrosoftAzureStorageEmulator.msi
COPY Start.ps1 .
# Azure Storage Emulator
EXPOSE 80
# Configure and launch
ENTRYPOINT powershell .\Start.ps1
docker build -t charmsan/azurestorageemulator .
New-CredentialSpec -Name AseSvc -AccountName AseSvc
docker run -it -h ASE-DEV --name AzureStorageEmulator-Dev --network external --ip 192.168.11.1 --dns 192.168.15.1 --dns 192.168.15.2 --security-opt "credentialspec=file://AseSvc.json" --restart unless-stopped charmsan/azurestorageemulator -HostName contoso.com -AccountName dev -SqlServerInstance CONTOSO-ENV-DB\CONTOSO_DEV
add xdt:Transform="SetAttributes" xdt:Locator="Match(key)" key="StorageAccountConnectionString" value="DefaultEndpointsProtocol=http;AccountName=dev;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://dev.blob.contoso.com/dev;" />
上一篇:win32 api 文件处理
文章标题:在 Windows Server Container 中运行 Azure Storage Emulator(三):运行在容器中
文章链接:http://soscw.com/index.php/essay/81678.html