blob: f81218c585dd5468137130e1f4705d89e6a8eaf7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "version" docker --version
check "ps" docker ps
check "run hello world" docker run hello-world
# Report result
reportResults
|