13 lines
526 B
Bash
Executable File
13 lines
526 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://www.smockle.com/blog/2019/04/22/migrating-from-travis-ci-to-docker-hub-automated-builds/
|
|
|
|
# This upgrades the docker client on the Docker Cloud server to a version
|
|
# that contains the `docker manifest` command. To use `docker manifest`
|
|
# set `DOCKER_CLI_EXPERIMENTAL=enabled` in your build environment.
|
|
# See README.md (in this dir) and the screenshot for more info.
|
|
|
|
apt-get -y update
|
|
apt-get -y --only-upgrade install docker-ee
|
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|