(String ip, String proto)
| 76 | } |
| 77 | |
| 78 | public void startServer(String ip, String proto) { |
| 79 | DockerClient client = getClient(); |
| 80 | if (!getImage(client)) { |
| 81 | |
| 82 | // TODO: disable checkbox |
| 83 | return; |
| 84 | } |
| 85 | createContainer(client, ip, proto); |
| 86 | startContainer(client, proto); |
| 87 | patchContainer(client, ip, proto); |
| 88 | } |
| 89 | |
| 90 | public void stopServer() { |
| 91 | DockerClient client = getClient(); |
nothing calls this directly
no test coverage detected