Files
linuxkit/alpine/packages/test/usr/bin/mobytest
2016-09-12 16:02:07 +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