blob: 8a48976d664ab632c39e8438cadd2fe7cf79fcc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "default address pool setting set" bash -c "ps -ax | grep -E "dockerd.+base=192.168.0.0/16,size=24""
# Report result
reportResults
|