Merge pull request #29 from cerc-io/dboreham/compose-ps
Implement deploy-system status command
This commit is contained in:
commit
20fae9f2c0
@ -79,10 +79,16 @@ def command(ctx, include, exclude, cluster, command):
|
||||
if verbose:
|
||||
print("Running compose down")
|
||||
docker.compose.down()
|
||||
elif command == "ps":
|
||||
elif command == "status":
|
||||
if verbose:
|
||||
print("Running compose ps")
|
||||
docker.compose.ps()
|
||||
container_list = docker.compose.ps()
|
||||
if len(container_list) > 0:
|
||||
print("Running containers:")
|
||||
for container in container_list:
|
||||
print(f"id: {container.id}, name: {container.name}")
|
||||
else:
|
||||
print("No containers running")
|
||||
elif command == "logs":
|
||||
if verbose:
|
||||
print("Running compose logs")
|
||||
|
Loading…
Reference in New Issue
Block a user