mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 05:00:30 +00:00
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>
20 lines
433 B
Bash
Executable File
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
|