From 96ab171f1c0f9b657d6e8a404c563077e052f1da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Sun, 30 Sep 2018 13:49:07 +0200 Subject: [PATCH] Revert "By default, don't push android image to dockerhub" This reverts commit 8392f4a2d3ba468e5d88f7fd8c7dc0e315a85083. Actually, no personal data is included in the Android image, so it's perfectly fine to push it to docker hub. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0ae8732..e253fc6 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ build-android: ## Build the docker image for Android ################### Pushing images to docker hub -push: push-openedx push-configurator push-forum push-notes push-xqueue ## Push all images to dockerhub +push: push-openedx push-configurator push-forum push-notes push-xqueue push-android ## Push all images to dockerhub push-openedx: ## Push Open edX images to dockerhub docker push regis/openedx:hawthorn docker push regis/openedx:latest @@ -170,7 +170,7 @@ push-notes: ## Push notes image to dockerhub push-xqueue: ## Push Xqueue image to dockerhub docker push regis/openedx-xqueue:hawthorn docker push regis/openedx-xqueue:latest -push-android: ## Push the Android image to dockerhub. Be careful! Customised settings will be added to this image. +push-android: ## Push the Android image to dockerhub docker push regis/openedx-android:latest dockerhub: build push ## Build and push all images to dockerhub