mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-07 16:41:34 +00:00
- 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>
20 lines
409 B
Bash
Executable File
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
|