Files
linuxkit/alpine/packages/test/usr/bin/mobytest
Justin Cormack 8d3691fabb Containerize binfmt_misc
- statically make containerd symlinks so rootfs can be read only
- run binfmt_misc in a containerd container
- ship arm, aarch64, ppc64le qemu static versions that always "just work" as this is supported in Linux 4.8

fix #53

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-11-30 12:49:37 +00:00

20 lines
409 B
Bash
Executable File

#!/bin/sh
set -ex
ifconfig
diagnostics
docker version
docker info
docker ps
docker pull alpine
docker run alpine true
docker pull armhf/alpine
docker run armhf/alpine uname -a
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:d57f9829e3f862acc0f7c8421bd8579650287fb6