summaryrefslogtreecommitdiffstats
path: root/packaging/docker/build-test.sh
blob: 3c55e173608aa850b899635440e4018cfbcbcdaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
# Docker build wrapper, for testing manually the docker build process
# TODO: This script should consume build.sh after setting up required parameters
#
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Author  : Chris Akritidis (chris@netdata.cloud)
# Author  : Pavlos Emm. Katsoulakis (paul@netdata.cloud)

printhelp() {
	echo "Usage: packaging/docker/build-test.sh -r <REPOSITORY> -v <VERSION> -u <DOCKER_USERNAME> -p <DOCKER_PWD> [-s]
	-s skip build, just push the image
Builds an amd64 image and pushes it to the docker hub repository REPOSITORY"
}

set -e

if [ ! -f .gitignore ]; then
	echo "Run as ./packaging/docker/$(basename "$0") from top level directory of git repository"
	exit 1
fi

DOBUILD=1
while getopts :r:v:u:p:s option
do
	case "$option" in
	r)
		REPOSITORY=$OPTARG
	 	;;
	v)
		VERSION=$OPTARG
		;;
	u)
		DOCKER_USERNAME=$OPTARG
		;;
	p) 
		DOCKER_PWD=$OPTARG
		;;
	s)
		DOBUILD=0
		;;
	*)
		printhelp
		exit 1
		;;
	esac
done

if [ -n "${REPOSITORY}" ]; then
	if [ $DOBUILD -eq 1 ] ; then
		echo "Building ${VERSION:-latest} of ${REPOSITORY} container"
		docker run --rm --privileged multiarch/qemu-user-static:register --reset

		# Build images using multi-arch Dockerfile.
		eval docker build --build-arg ARCH="amd64" --tag "${REPOSITORY}:${VERSION:-latest}" --file packaging/docker/Dockerfile ./

		# Create temporary docker CLI config with experimental features enabled (manifests v2 need it)
		mkdir -p /tmp/docker
		#echo '{"experimental":"enabled"}' > /tmp/docker/config.json
	fi

    if [ -n "${DOCKER_USERNAME}" ] && [ -n "${DOCKER_PWD}" ] ; then
        # Login to docker hub to allow futher operations
        echo "Logging into docker"
        echo "$DOCKER_PWD" | docker --config /tmp/docker login -u "$DOCKER_USERNAME" --password-stdin

        echo "Pushing ${REPOSITORY}:${VERSION}"
        docker --config /tmp/docker push "${REPOSITORY}:${VERSION}"
    fi
else
	echo "Missing parameter. REPOSITORY=${REPOSITORY}"
	printhelp
	exit 1
fi