Files
linuxkit/alpine/packages/test/mobytest
Justin Cormack 7ca1dc5e1b add a test for a network service
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-09-09 00:44:40 +01:00

14 lines
205 B
Bash
Executable File

#!/bin/sh
set -ex
docker info
docker ps
docker pull alpine
docker run alpine true
docker run --name nginx -d -p 80:80 nginx:alpine
wget -O - localhost
docker kill nginx
docker rm nginx
docker swarm init