Files
linuxkit/alpine/packages/test/usr/bin/mobytest
Justin Cormack ae885bd714 Use DOCKER_CONTENT_TRUST=1 when pulling library images
When building the base images always test signatures.

This will be the default at some point.

Add a test that content trust is working.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-11-30 13:35:38 +00:00

20 lines
433 B
Bash
Executable File

#!/bin/sh
set -ex
ifconfig
diagnostics
docker version
docker info
docker ps
DOCKER_CONTENT_TRUST=-1 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