2019-03-30 01:37:40 -04:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
2019-03-31 15:52:43 -04:00
|
|
|
ALPINE_VER="3.8"
|
|
|
|
DISTRO="balenalib/rpi-alpine:$ALPINE_VER"
|
2019-03-31 23:47:39 -04:00
|
|
|
# Used for Radicale
|
2019-03-31 15:52:43 -04:00
|
|
|
EDGE_DISTRO="balenalib/rpi-alpine:edge"
|
2019-03-31 23:47:39 -04:00
|
|
|
# Used for webmails
|
2019-03-31 00:20:01 -04:00
|
|
|
PHP="arm32v7/php:7.2-apache"
|
2019-03-31 23:47:39 -04:00
|
|
|
|
|
|
|
# use qemu-*-static from docker container
|
|
|
|
docker run --rm --privileged multiarch/qemu-user-static:register
|
2019-04-01 11:31:19 -04:00
|
|
|
docker-compose -f build.yml build \
|
|
|
|
--build-arg DISTRO=$DISTRO \
|
|
|
|
--build-arg PHP_DISTRO=$PHP \
|
|
|
|
--build-arg EDGE_DISTRO=$EDGE_DISTRO \
|
|
|
|
--parallel $@
|