Move all output to the directories it will be in eventually

Signed-off-by: Justin Cormack <justin@specialbusservice.com>
This commit is contained in:
Justin Cormack
2016-09-10 21:29:28 +01:00
committed by Justin Cormack
parent a225fb66b4
commit b1597ff9a9
26 changed files with 75 additions and 64 deletions

View File

@@ -0,0 +1,13 @@
#!/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