mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-05 06:08:18 +00:00
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>
15 lines
249 B
Bash
Executable File
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
|