The NAS came today and I put some old drives in it right now as I'm waiting on my secondary drive order (to try and make sure I hit different production runs). So I started tinkering with the container station when I remembered about docker machine.
Docker machine is used to control multiple docker engines. Typically it is used to create a virtual machine, or provision one on a cloud provider. However, there is also a poorly documented driver named "none". The none driver is just straight docker api over a tcp socket. The container station exposes this and provides the certificates for authentication.
To get the certificates, go to the Preferences page in the Container Station. From there select the Docker Certificate tab. This page has some instructions on how to install the certs, but that'll only work if you only plan on connecting to the NAS. So instead just hit the download button.
Now that we have the certs we can create the machine in docker-machine. Of course replacing %nas ip% with the IP address or hostname of the NAS and %name% with whatever you want to refer to it as in docker machine. In the following examples I've named the machine nas.
docker-machine create --driver=none --url=tcp://%nas ip%:2376 %name%
If we try to use this as is right now we'll get the following error.
$ docker-machine ls --filter name=nas
NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS
nas - none Running tcp://nas:2376 Unknown Unable to query docker version: Get https://nas:2376/v1.15/version: x509: certificate signed by unknown authority
To fix this we need to add and configure the certs that we downloaded earlier into the docker machine config. To do that we need to cd into the directory that holds the config. Once there, we need to extract cert.zip into that directory.
$ cd ~/.docker/machine/machines/nas
$ unzip ~/Downloads/cert.zip
Archive: /home/grim/Downloads/cert.zip
extracting: ca.pem
extracting: cert.pem
extracting: key.pem
Now we just need to modify the AuthOptions section to point to the correct files. It should look like the following:
"AuthOptions": {
"CertDir": "/home/grim/.docker/machine/machines/nas/",
"CaCertPath": "/home/grim/.docker/machine/machines/nas/ca.pem",
"CaPrivateKeyPath": "/home/grim/.docker/machine/machines/nas/key.pem",
"CaCertRemotePath": "",
"ServerCertPath": "/home/grim/.docker/machine/machines/nas/cert.pem",
"ServerKeyPath": "/home/grim/.docker/machine/machines/nas/key.pem",
"ClientKeyPath": "/home/grim/.docker/machine/machines/nas/key.pem",
"ServerCertRemotePath": "",
"ServerKeyRemotePath": "",
"ClientCertPath": "/home/grim/.docker/machine/machines/nas/cert.pem",
"ServerCertSANs": [],
"StorePath": "/home/grim/.docker/machine/machines/nas"
}
Now we can enable the host in docker machine and run docker ps on it:
$ eval $(docker-machine env nas)
$ docker ps
Error response from daemon: client is newer than server (client API version: 1.24, server API version: 1.23)
On no!! What happened?!? Well docker is usually pretty strict about having the same version of the client talk to the same version of the server. Luckily we can work around this.
$ export DOCKER_API_VERSION=1.23
$ eval $(docker-machine env nas)
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
And it works! Now we can treat the nas as any old docker host and let docker-machine manage it for us.