|
|
|
|
|
by ffk
2405 days ago
|
|
There were a few reasons for this. The original golang version of docker required root, full stop. There was no difference between the client and server. The first reason was to reduce privileges of the client interface. This would provide the possibility to reduce privileges and restrict what unprivileged could do later on. The communication over the socket is just http, which allows for remote management of docker containers. A second reason was to build a strong contact between the client and server. The client became syntactic sugar for the rest calls, which helped stabilize docker. This would ultimately lead to enabling osx and win support via a VM on the host. Another major goal was to enable the docker in docker use case which helped significantly when developing on docker itself. Source: I was there. :) |
|