From dc6f7dfbfdf6b2b019fa31186ed54f449c1027b4 Mon Sep 17 00:00:00 2001 From: AaronDewes Date: Tue, 14 Jun 2022 17:09:41 +0000 Subject: [PATCH] Another fix --- app/lib/manage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/lib/manage.py b/app/lib/manage.py index ed41a0b..4367705 100644 --- a/app/lib/manage.py +++ b/app/lib/manage.py @@ -57,6 +57,7 @@ def getArguments(): return arguments def handleAppV4(app): + composeFile = os.path.join(appsDir, app, "docker-compose.yml") os.chown(os.path.join(appsDir, app), 1000, 1000) print("docker run --rm -v {}:/apps -u 1000:1000 ghcr.io/runcitadel/app-cli:main /app-cli convert --app-name '{}' --port-map /apps/ports.json /apps/{}/app.yml /apps/{}/result.yml --services 'lnd'".format(appsDir, app, app, app)) os.system("docker run --rm -v {}:/apps -u 1000:1000 ghcr.io/runcitadel/app-cli:main /app-cli convert --app-name '{}' --port-map /apps/ports.json /apps/{}/app.yml /apps/{}/result.yml --services 'lnd'".format(appsDir, app, app, app))