MCPcopy
hub / github.com/louislam/dockge / composeYAML

Method composeYAML

backend/stack.ts:133–142  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

joinMethod · 0.80

Tested by

no test coverage detected