Docker-volumes does not work

I’m trying to use docker-volumes but it seems something is broken - system volume is not visible inside docker image:

docker-volumes: ["/root/Configs:/src/Configs"]

When I try docker inspect I get the following result inside Mounts:

"Mounts": [
            {
                "Type": "volume",
                "Name": "d09c78b8b4fd492ffa597af5a77fe21954e3ae3b5b8fca785f6dc77d0ac5a549",
                "Source": "/var/lib/docker/volumes/d09c78b8b4fd492ffa597af5a77fe21954e3ae3b5b8fca785f6dc77d0ac5a549/_data",
                "Destination": "/root/Configs:/src/Configs",
                "Driver": "local",
                "Mode": "",
                "RW": true,
                "Propagation": ""
            }
        ]

Source and destination is certainly wrong.

Docker version

# Docker version
Client:
 Version:      1.13.0
 API version:  1.25
 Go version:   go1.7.3
 Git commit:   49bf474
 Built:        Tue Jan 17 09:58:26 2017
 OS/Arch:      linux/amd64

Server:
 Version:      1.13.0
 API version:  1.25 (minimum version 1.12)
 Go version:   go1.7.3
 Git commit:   49bf474
 Built:        Tue Jan 17 09:58:26 2017
 OS/Arch:      linux/amd64
 Experimental: false

Edit:

I forgot to add that I had such problems both on Fedora and Ubuntu. When I started image normally with docker run -v ... volume was mounted without problems.

It strange. I tried other versions of ubuntu (both 16.04 and 14.04) and a docker engine (1.13.0 and 1.12.0) and on both systems and versions I’m unable to mount those volumes.

Hi same issue for me :

        "Image": "astuciel",
    "Volumes": {
        "/home/vincent/folder:/usr/local/lib/R/site-library/folder/base_de_donnees": {}
    },
    "WorkingDir": "",
    "Entrypoint": null,
    "OnBuild": null,
    "Labels": {}

	    (...)
	    
"Mounts": [
    {
        "Name": "bbf7c06b44f7a916b6ae0faf3097710dc720a0618ff6be12ba3e225999e9e13c",
        "Source": "/var/lib/docker/volumes/bbf7c06b44f7a916b6ae0faf3097710dc720a0618ff6be12ba3e225999e9e13c/_data",
        "Destination": "/home/vincent/folder:/usr/local/lib/R/site-library/folder/base_de_donnees",
        "Driver": "local",
        "Mode": "",
        "RW": true,
        "Propagation": ""
    }
],

instead of : (with docker run -v…)

 "Volumes": null,
    (...)
	    
"Mounts": [
    {
        "Source": "/home/vincent/folder",
        "Destination": "/usr/local/lib/R/site-library/folder/base_de_donnees",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
    }
],

Im on ubuntu 16.04

vincent@xps:~$ docker version
Client:
 Version:      1.12.6
 API version:  1.24
 Go version:   go1.6.4
 Git commit:   78d1802
 Built:        Tue Jan 10 20:38:45 2017
 OS/Arch:      linux/amd64

Server:
 Version:      1.12.6
 API version:  1.24
 Go version:   go1.6.4
 Git commit:   78d1802
 Built:        Tue Jan 10 20:38:45 2017
 OS/Arch:      linux/amd64

@VincentGuyader, @zzawadz thanks for reporting: we released ShinyProxy 0.8.4 which should a.o. fix the issues. See http://www.shinyproxy.io/downloads/

Tested and works great! Thanks!