2

ファイル共有を Windows コンテナーにマウントしたいと考えています。Azure File ストレージ共有をマウントしようとしましたが、最初は正常に動作しました。ディレクトリ内のファイルを参照できます。

ただし、コンテナの powershell-session を切断して再接続すると、共有は「使用不可」とマークされます。また、ENTRYPOINT として実行されている実行可能ファイルでは共有を使用できません。

    docker exec -it a4 powershell
    **************
    PS C:\> net use z: \\XXXX.file.core.windows.net\dockerstore /u:XXXXX XXXXXX== /P:Yes
    The command completed successfully.

    PS C:\> net use
    New connections will be remembered.


    Status       Local     Remote                    Network

    -------------------------------------------------------------------------------
    OK           Z:        \\XXXX.file.core.windows.net\dockerstore
                                                    Microsoft Windows Network
    The command completed successfully.


    exit

    ******************
    docker exec -it a4 powershell
    **********************
    PS C:\> net use
    New connections will be remembered.


    Status       Local     Remote                    Network

    -------------------------------------------------------------------------------
    Unavailable  Z:        \\XXXX.file.core.windows.net\dockerstore
                                                    Microsoft Windows Network
    The command completed successfully.

また、ホストにネットワーク ドライブをマウントし、コンテナーにマウントしてみました。しかし、docker-compose は起動に失敗します (アクセスの問題?):

Cannot create container for service configserver-c: invalid bind mount spec "z:\\Certificates:c:\\Certificates:rw": invalid volume specification: 'z:\Certificates:c:\Certificates:rw': invalid mount config for type "bind": bind source path does not exist

外部ファイル共有を永続的にマウントする他のオプションはありますか? (Windows で利用できる Docker ボリューム ドライバーは知りません。)

詳細情報: Windows 10 で Docker for Windows を使用し、Hyper-V 分離を使用しています。

ドッカーのバージョン:

    Client:
     Version:      17.03.1-ce
     API version:  1.27
     Go version:   go1.7.5
     Git commit:   c6d412e
     Built:        Tue Mar 28 00:40:02 2017
     OS/Arch:      windows/amd64

    Server:
     Version:      17.03.1-ce
     API version:  1.27 (minimum version 1.24)
     Go version:   go1.7.5
     Git commit:   c6d412e
     Built:        Tue Mar 28 00:40:02 2017
     OS/Arch:      windows/amd64
     Experimental: true
4

1 に答える 1