(networkName: string)
| 1592 | } |
| 1593 | |
| 1594 | private async createDockerNetwork (networkName: string) { |
| 1595 | const {stdout: networkId} = await Utils.spawn([this.argv.containerExecutable, "network", "create", `${networkName}`]); |
| 1596 | this._serviceNetworkId = networkId; |
| 1597 | } |
| 1598 | |
| 1599 | private async startService (writeStreams: WriteStreams, expanded: {[key: string]: string}, service: Service) { |
| 1600 | const cwd = this.argv.cwd; |