Files
linuxkit/alpine/packages/test/usr/bin/mobytest
Justin Cormack 249df1e912 Add check-config container and test
Currently the test will never fail, planning to fix this upstream.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-10-28 12:39:31 +01:00

17 lines
298 B
Bash
Executable File

#!/bin/sh
set -ex
ifconfig
docker version
docker info
docker ps
docker pull alpine
docker run alpine true
docker run --name webserver -d -p 80:80 alpine httpd -f -h /etc
wget -O - -q localhost/hostname
docker kill webserver
docker rm webserver
docker swarm init
docker run mobylinux/check-config