From 9244d11df9aee976fbae79b283f22af03e596973 Mon Sep 17 00:00:00 2001 From: Tamas K Lengyel Date: Tue, 12 Mar 2024 15:33:12 -0400 Subject: [PATCH] luci-app-dockerman: Add dockerd and docker-compose as dependency When installing luci-app-dockerman the webui appears empty and unusable if these dependencies are not installed. Fix it by declaring them. Signed-off-by: Tamas K Lengyel --- applications/luci-app-dockerman/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/luci-app-dockerman/Makefile b/applications/luci-app-dockerman/Makefile index 72ec1d97b3f1..fc4f7819a0a2 100644 --- a/applications/luci-app-dockerman/Makefile +++ b/applications/luci-app-dockerman/Makefile @@ -6,7 +6,9 @@ LUCI_DEPENDS:=@(aarch64||arm||x86_64) \ +luci-compat \ +luci-lib-docker \ +docker \ - +ttyd + +ttyd \ + +dockerd \ + +docker-compose PKG_LICENSE:=AGPL-3.0 PKG_MAINTAINER:=lisaac \