Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-11-23 19:17:40 +0300
committernachoparker <nacho@ownyourbits.com>2017-11-23 20:50:22 +0300
commit681dc69dc75cd99c951d929e416ff88c0646007f (patch)
tree38f73960c8363ba283f1e7c9a19e9eaaa55c1f6f /docker-armhf/build-container.sh
parent56c900948da662faf6c5a45ebca4d2a0e33b9170 (diff)
build: batch creation of all images and containers
Diffstat (limited to 'docker-armhf/build-container.sh')
-rw-r--r--docker-armhf/build-container.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/docker-armhf/build-container.sh b/docker-armhf/build-container.sh
index 7080ae0b..d7d0eed3 100644
--- a/docker-armhf/build-container.sh
+++ b/docker-armhf/build-container.sh
@@ -11,9 +11,16 @@
install()
{
- git clone https://github.com/nextcloud/nextcloudpi.git
- make -C nextcloudpi
- # TODO docker push
+ [[ -d nextcloudpi ]] || git clone --depth 1 https://github.com/nextcloud/nextcloudpi.git
+ cd nextcloudpi
+ git pull origin master
+ docker pull arm32v7/debian:stretch-slim
+ make && {
+ docker push ownyourbits/nextcloudpi-armhf
+ docker push ownyourbits/nextcloud-armhf
+ docker push ownyourbits/lamp-armhf
+ docker push ownyourbits/debian-ncp-armhf
+ }
}
configure(){ :; }