15 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/bin/bash
 | 
						|
# This is part of Application Builder.
 | 
						|
# https://github.com/golift/application-builder
 | 
						|
 | 
						|
# 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
 |