Files
linuxkit/alpine/packages/test/usr/bin/mobytest
Justin Cormack a2c3991580 Switch to dhcpcd
Should fix issue with not sending hostname which Azure needs.

This should be requesting all the dhcp features we currently use.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-09-23 15:52:30 +01:00

15 lines
249 B
Bash
Executable File

#!/bin/sh
set -ex
ifconfig
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