mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 14:18:47 +00:00
remove error on no discovered services
This commit is contained in:
parent
bc7937db71
commit
ee729a7e6a
2 changed files with 3 additions and 4 deletions
|
@ -50,6 +50,9 @@ export async function servicesResponse() {
|
|||
|
||||
try {
|
||||
discoveredServices = cleanServiceGroups(await servicesFromDocker());
|
||||
if (discoveredServices?.length === 0) {
|
||||
console.debug("No containers were found with homepage labels.");
|
||||
}
|
||||
} catch (e) {
|
||||
console.error("Failed to discover services, please check docker.yaml for errors or remove example entries.");
|
||||
if (e) console.error(e.toString());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue