Translate environment vars in labels

This commit is contained in:
Jon 2023-05-29 01:14:03 -04:00 committed by GitHub
parent 8673548c88
commit e6d95e29ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ export async function servicesFromDocker() {
type: 'service'
};
}
shvl.set(constructedService, label.replace("homepage.", ""), container.Labels[label]);
shvl.set(constructedService, label.replace("homepage.", ""), substituteEnvironmentVars(container.Labels[label]));
}
});