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:
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(){ :; }