-
Notifications
You must be signed in to change notification settings - Fork 303
Closed
Description
Expected behavior
File access in volumes should be comparable to access times in non-volumes, similarly to Linux installations of docker
Actual behavior
File access in volumes is many times slower than on non-volumes.
Information
Version: 1.12.3-beta29.2 (8280)
Channel: Beta
Sha1: 902414df0cea7fdc85b87f0077b0106c3af9f64c
Started on: 2016/11/01 21:19:46.408
Resources: C:\Program Files\Docker\Docker\Resources
OS: Windows 10 Pro
Edition: Professional
Id: 1607
Build: 14393
BuildLabName: 14393.351.amd64fre.rs1_release_inmarket.161014-1755
Steps to reproduce the behavior
Get on the commandline of a lightweight docker container
root@a6b2e82c167b:/# dd if=/dev/zero of=test.dat bs=1024 count=100000
100000+0 records in
100000+0 records out
102400000 bytes (102 MB) copied, 0.569183 s, 180 MB/s
and mount a volume:
root@a6b2e82c167b:/var/www# dd if=/dev/zero of=test.dat bs=1024 count=100000
100000+0 records in
100000+0 records out
102400000 bytes (102 MB) copied, 5.11662 s, 20.0 MB/s
In 9 times slower.
Reactions are currently unavailable