Skip to content
Permalink
4cc64f08da
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@chubing
Latest commit 4cc64f0 Oct 8, 2018 History
1 contributor

Users who have contributed to this file

18 lines (13 sloc) 397 Bytes
#!/usr/bin/env bats
load ../common
@test "010 Image is present and healthy" {
docker image inspect ${maintainer}/${imagename}
}
@test "030 Test Compose the environment" {
cd test-compose && ./compose.sh
cd test-compose && docker-compose down
[ "$status" -eq 0 ]
}
@test "070 There are no known security vulnerabilities" {
./tests/clairscan.sh ${maintainer}/${imagename}
}