mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-08 05:39:25 +00:00
Currently the test will never fail, planning to fix this upstream. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
17 lines
298 B
Bash
Executable File
17 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
ifconfig
|
|
docker version
|
|
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
|
|
docker run mobylinux/check-config
|