8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
# Show amar room status
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "=== Containers ==="
|
|
docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" | grep -E "(amar|soleprint|NAMES)" || echo "No containers running"
|