Docker GUI with remote machine

Hello!
I got some issues about connecting to remote host.
In case of broken hyper-v i can’t run on my 4820k. I wanna use Docker gui with remote machine, so i changed my settings:

lex@desktop MINGW64 /c/ProgramData/Docker/config
$ cat ./daemon.json
{
    "registry-mirrors": [],
    "insecure-registries": [],
    "hosts": [
      "tcp://192.168.88.22:2375"
    ]
  }

But docker gui still failng about hyper-v not enabled. Is Docker gui really requires Hyper-V enabled in case of non-local machine? Should I do any other adjustments to rub gui with remote machine?
Some other info:

$ systeminfo | grep "OS Version"
OS Version:                10.0.17134 N/A Build 17134

$ docker -H  192.168.88.222 version
Client: Docker Engine - Community
 Version:           18.09.2
 API version:       1.39
 Go version:        go1.10.8
 Git commit:        6247962
 Built:             Sun Feb 10 04:12:31 2019
 OS/Arch:           windows/amd64
 Experimental:      false

Server: Docker Engine - Community
 Engine:
  Version:          18.09.2
  API version:      1.39 (minimum version 1.12)
  Go version:       go1.10.6
  Git commit:       6247962
  Built:            Sun Feb 10 03:47:25 2019
  OS/Arch:          linux/amd64
  Experimental:     false

$ docker -H 192.168.88.222 run hello-world

Hello from Docker!
This message shows that your installation appears to be working correctly.
<...>