dockerFuncs.forEach((key) => {
  // put every function from Dockerode into the `Docker.prototype`
  Docker.prototype[key] = function () {
    const args = Array.from(arguments)
    return this.client[key].apply(this.client, args)