mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 10:10:32 +00:00
- run test suite under containerd - in future this should be converted to Go not shell see #860 - test suite is now in its own initrd, can be run on any platform not just qemu Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
283 B
Bash
Executable File
14 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
docker version
|
|
docker info
|
|
docker ps
|
|
DOCKER_CONTENT_TRUST=1 docker pull alpine
|
|
docker run --rm alpine true
|
|
docker pull armhf/alpine
|
|
docker run --rm armhf/alpine uname -a
|
|
docker swarm init
|
|
docker run mobylinux/check-config:bc2b57a0770129c75a6676ae0c944ece1d50cc3f
|