Bind directory to docker container

Hi everyone!
So try bind to Supervised HA directory from host system.
My steps

  1. Stop container and docker service
  2. Edit hostconfig.json
"Binds": [
        "/run/dbus:/run/dbus:ro",
        "/mnt/remote:/remote:rw", #Have added there
        "/usr/share/hassio/homeassistant:/config:rw",
        "/usr/share/hassio/ssl:/ssl:ro",
        "/usr/share/hassio/share:/share:rw",
        "/usr/share/hassio/tmp/homeassistant_pulse:/etc/pulse/client.conf:ro",
        "/usr/share/hassio/audio/external:/run/audio:ro",
        "/usr/share/hassio/audio/asound:/etc/asound.conf:ro"
    ],
  1. Edit config.v2.json
    3.1 Volumes
        "Volumes": {
            "/config": {},
            "/etc/asound.conf": {},
            "/etc/pulse/client.conf": {},
            "/remote": {}, # Have added there 
            "/run/audio": {},
            "/run/dbus": {},
            "/share": {},
            "/ssl": {}
        },

3.2 MountPoints

"/remote": {
            "Source": "/mnt/remote",
            "Destination": "/remote",
            "RW": true,
            "Name": "",
            "Driver": "",
            "Type": "bind",
            "Relabel": "rw",
            "Propagation": "rprivate",
            "Spec": {
                "Type": "bind",
                "Source": "/mnt/remote",
                "Target": "/remote"
            },
            "SkipMountpointCreation": false
        },
  1. systemctl (re)start docker | shutdown -r now

Directory /mnt/remote exist, permission for directory 755 (same as for /config or /ssl, etc)

Could you explain for me what i doing wrong?