* Gets a Docker network by name * @param {Object} params * @param {string} params.networkName - Name of the network * @returns {Promise } Network object
({ networkName })
| 899 | * @returns {Promise<Dockerode.Network>} Network object |
| 900 | */ |
| 901 | getNetwork({ networkName }) { |
| 902 | return this.client.getNetwork(networkName) |
| 903 | } |
| 904 | |
| 905 | /** |
| 906 | * Removes a Docker network if it exists |
no outgoing calls
no test coverage detected