mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-28 09:27:29 +00:00
excludes - Go base images as not yet available - perf which does not build with latest image Signed-off-by: Justin Cormack <justin.cormack@docker.com>
14 lines
314 B
Bash
Executable File
14 lines
314 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@sha256:7f8327e9eeae67a7f1388ad0ac5089454fea0636c175feb4400e5fc76ebc816e
|