We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c890782 + a0b408b commit 003f503Copy full SHA for 003f503
1 file changed
tests/bats/06-runtime.bats
@@ -221,9 +221,13 @@ teardown(){
221
run $DEX run imgtest/debian whoami
222
[ $status -eq 1 ]
223
224
+ $DEX image build imgtest/labels:enable-host_users
225
run $DEX run imgtest/labels:enable-host_users whoami
226
+ for line in ${lines[@]}; do
227
+ echo "$line"
228
+ done
229
[ $status -eq 0 ]
- id -un 2>/dev/null && [ "$output" = "$(id -un 2>/dev/null)" ]
230
+ [ "$output" = "$(id -un 2>/dev/null)" ]
231
}
232
233
@test "runtime respects host_docker label for passthrough of host docker socket and vars" {
0 commit comments