mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
8 lines
136 B
Bash
8 lines
136 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if docker ps --filter "status=restarting" | grep 'vmware'; then
|
||
|
echo "container is restaring, fail CI."
|
||
|
exit 1
|
||
|
fi
|