Commit faffc9b1 authored by Robert Schmidt's avatar Robert Schmidt

Fix: cut less output of docker-compose, it changed in U22

parent 79d351fb
......@@ -980,7 +980,7 @@ class Containerize():
services = []
for s in allServices:
mySSH.command(f'docker-compose -f ci-docker-compose.yml ps --all -- {s}', '\$', 5, silent=False)
running = mySSH.getBefore().split('\r\n')[3:-1]
running = mySSH.getBefore().split('\r\n')[2:-1]
#logging.debug(f'running services: {running}')
if len(running) > 0: # something is running for that service
services.append(s)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment