()
| 131 | } |
| 132 | |
| 133 | get composeYAML() : string { |
| 134 | if (this._composeYAML === undefined) { |
| 135 | try { |
| 136 | this._composeYAML = fs.readFileSync(path.join(this.path, this._composeFileName), "utf-8"); |
| 137 | } catch (e) { |
| 138 | this._composeYAML = ""; |
| 139 | } |
| 140 | } |
| 141 | return this._composeYAML; |
| 142 | } |
| 143 | |
| 144 | get composeENV() : string { |
| 145 | if (this._composeENV === undefined) { |