3

Docker コンテナーにボリュームをアタッチしようとしましたが、試した方法はどれも機能しませんでした。私は Azure Windows 2016 vm を使用しています。ドッカー情報は次のとおりです。

Containers: 2
Running: 1
Paused: 0
Stopped: 1
Images: 108
Server Version: 1.12.2-cs2-ws-beta
Storage Driver: windowsfilter
Windows:
Logging Driver: json-file
Plugins:
Volume: local
Network: nat null overlay
Swarm: inactive
Default Isolation: process
Kernel Version: 10.0 14393 (14393.321.amd64fre.rs1_release_inmarket.161004-2338)
Operating System: Windows Server 2016 Datacenter
OSType: windows
Architecture: x86_64
CPUs: 2
Total Memory: 7 GiB
Name: wfgendocker
ID: QBKJ:RZAU:ADAI:WS4U:JV2K:IB5I:52K6:MWTD:NS3X:KRP6:SH6T:QKDT
Docker Root Dir: C:\ProgramData\docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false

そのため、docker ファイルで IIS Web サイトを inetpub/root にコピーしています。私の目標は、コンテナーの /inetpub をローカル マシンにマウントして、実行時にスクリプトと web.config を変更できるようにすることです。

最初は dockerfile で VOLUME /inetpub を試してみましたが、正常にビルドされましたが、コンテナーを実行すると、次のエラーが表示されます。

CreateContainer 中にエラーが発生しました: Windows システム コールでエラーが発生しました: ディレクトリが空ではありません

しかし、ボリュームを空にする必要があることについて、ドッカーのドキュメントのどこにも言及されていません。

それで、 docker run -p 80:80 -v C:/build/inetpub:C:/inetpub web/iis のように、実行時にボリュームをアタッチしてみました。これにより、上記と同じエラーが発生しました。しかし、
docker run -p 80:80 -v C:/build/inetpub:C:/randomtest web/iis を試すと。動作しますが、コンテナが停止しないとファイルを変更できません。

私が最後に試したのは、docker-compose での作業でした。私のサービスにはボリュームがあります: - ./inetpub:/inetpub で次のエラーが発生します

サービス wfgen のコンテナーを作成できません: 無効なボリューム仕様 "/inetpub": 無効なボリューム仕様

- ./inetpub:/inetpub のさまざまなバリエーションを試しましたが、常に同じエラーが発生しました。

助けてくれてありがとう、私は結果なしで何日もこれにこだわっています.

ここに私のdockerファイルがあります

FROM microsoft/iis:10.0.14393.206
SHELL ["powershell"]

#adding windows features to vm
RUN Install-WindowsFeature NET-Framework-45-ASPNET ; \
    Install-WindowsFeature Web-Asp-Net45

#temp tempfile
RUN mkdir C:\temp
#adding wfgen_admin user to vm
RUN mkdir C:\createUser
COPY createUser/ /createUser
RUN createUser/wfgen_adminCreate.ps1

#installing the services and starting them
RUN mkdir C:\aprogramfiles
COPY wfgenServices/ /aprogramfiles
RUN aprogramfiles/.\winsvc-install.cmd
#copying wfgen webcontent to vm
COPY inetpub/wwwroot/ /inetpub/wwwroot
RUN createUser/wfgen_admin_grant_access.ps1
#removing default website that runs on port 80
RUN Remove-WebSite -Name 'Default Web Site'

#creating a new iis website with the copied wfgen website i am not sure if i have the right commands here
RUN powershell -NoProfile -Command \
        Import-module IISAdministration; \
    New-IISSite -Name "wfgenroot" -PhysicalPath C:\inetpub\wwwroot -   BindingInformation "*:80:";
    #converting weforms and ws to applications
RUN ConvertTo-WebApplication "IIS:/Sites/wfgenroot/wfgen";
RUN ConvertTo-WebApplication "IIS:/Sites/wfgenroot/wfgen/WfApps/WebForms";
RUN ConvertTo-WebApplication "IIS:/Sites/wfgenroot/wfgen/ws"
#Setting the authentication type of the website
RUN Set-WebConfiguration system.web/authentication 'IIS:/Sites/wfgenroot' -value @{mode='Windows'}
RUN Set-WebConfigurationProperty -filter /system.webServer/security/authentication/anonymousAuthentication -name enabled -value true -PSPath 'IIS:/Sites/wfgenroot/wfgen'
RUN New-SelfSignedCertificate -CertStoreLocation createUser -DnsName 127.0.0.1
RUN New-WebBinding -Name "wfgenroot" -IP "*" -Port 443 -Protocol https
RUN $Thumbprint = (Get-ChildItem -Path Microsoft.PowerShell.Security\Certificate::LocalMachine\My | Where-Object {$_.Subject -match "127.0.0.1"}).Thumbprint;
RUN get-item Microsoft.PowerShell.Security\Certificate::LocalMachine\My\$Thumbprint | new-item 0.0.0.0!443

#RUN createUser/appcmdrun.ps1
#exposing port 80
EXPOSE 80
EXPOSE 443
WORKDIR /inetpub
4

2 に答える 2