mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-08 06:34:18 +00:00
Regenerated the kernel config from container, which bumped the kernel version and included some other fixes. Also bumps the check-config container to check for VSYSCALL_NATIVE Signed-off-by: Riyaz Faizullabhoy <riyaz.faizullabhoy@docker.com>
20 lines
432 B
Bash
Executable File
20 lines
432 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:bc2b57a0770129c75a6676ae0c944ece1d50cc3f
|