Error writing to host in Percona container in Docker for Windows Beta

Expected behavior

Percona starts up correctly, creating its initial files in a folder mounted from the host

Actual behavior

A few files are created in the host folder, but then the container exits with an error in the log with InnoDB trying to write a file in the mounted folder.

Information

C:> docker version
Client:
Version: 1.11.2
API version: 1.23
Go version: go1.5.4
Git commit: b9f10c9
Built: Wed Jun 1 21:20:08 2016
OS/Arch: windows/amd64

Server:
Version: 1.11.2
API version: 1.23
Go version: go1.5.4
Git commit: 56888bf
Built: Mon Jun 6 23:57:32 2016
OS/Arch: linux/amd64

Steps to reproduce the behavior

C:> docker run -p 3306:3306 --name some-percona -e MYSQL_ROOT_PASSWORD=some_password -v d:\temp:/var/lib/mysql -d percona:latest
1691b9d095bbe456d12c5e85e75ef60cb31260b0ec33f11c16dca632cced2838
C:> docker ps -l
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
1691b9d095bb percona:latest “docker-entrypoint.sh” 16 seconds ago Exited (1) 1 seconds ago some-percona
C:> docker logs 1691b9d095bb
Initializing database
2016-06-14T17:49:23.510095Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-06-14T17:49:30.393121Z 0 [Warning] InnoDB: Retry attempts for writing partial data failed.
2016-06-14T17:49:30.393152Z 0 [ERROR] InnoDB: Write to file /var/lib/mysql/xb_doublewritefailed at offset 0, 1048576 bytes should have been written, only 0 were written. Operating system error number 22. Check that your OS and file system support files of this size. Check also that the disk is not full or a disk quota exceeded.
2016-06-14T17:49:30.393160Z 0 [ERROR] InnoDB: Error number 22 means 'Invalid argument’
2016-06-14T17:49:30.393598Z 0 [ERROR] InnoDB: InnoDB Database creation was aborted with error Generic error. You may need to delete the ibdata1 file before trying to start up again.
2016-06-14T17:49:30.994247Z 0 [ERROR] Plugin ‘InnoDB’ init function returned error.
2016-06-14T17:49:30.994304Z 0 [ERROR] Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed.
2016-06-14T17:49:30.994313Z 0 [ERROR] Failed to initialize plugins.
2016-06-14T17:49:30.994317Z 0 [ERROR] Aborting

I am having the same issue here with percona image, did you ever resolve this issue?