Start task also needs to skip container starting for proxy app

This commit is contained in:
Johannes Zellner
2022-06-08 14:35:50 +02:00
parent d55a6a5eec
commit 25f44f58e3
+4 -2
View File
@@ -685,8 +685,10 @@ async function start(app, args, progressCallback) {
await progressCallback({ percent: 10, message: 'Starting app services' });
await services.startAppServices(app);
await progressCallback({ percent: 35, message: 'Starting container' });
await docker.startContainer(app.id);
if (app.manifest.id !== constants.RELAY_APPSTORE_ID) {
await progressCallback({ percent: 35, message: 'Starting container' });
await docker.startContainer(app.id);
}
await progressCallback({ percent: 60, message: 'Adding collectd profile' });
await addCollectdProfile(app);