From efe0e3542d97684810fff46ccf285e4fc19c98c1 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Tue, 5 Sep 2017 14:48:14 -0700 Subject: [PATCH] bump to 1.3 Signed-off-by: Victor Vieux --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 80cf432..0f722fd 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PLUGIN_NAME = vieux/sshfs -PLUGIN_TAG ?= next +PLUGIN_TAG ?= 1.3 all: clean rootfs create @@ -24,6 +24,10 @@ create: @echo "### create new plugin ${PLUGIN_NAME}:${PLUGIN_TAG} from ./plugin" @docker plugin create ${PLUGIN_NAME}:${PLUGIN_TAG} ./plugin -push: clean docker rootfs create enable +enable: + @echo "### enable plugin ${PLUGIN_NAME}:${PLUGIN_TAG}" + @docker plugin enable ${PLUGIN_NAME}:${PLUGIN_TAG} + +push: clean rootfs create enable @echo "### push plugin ${PLUGIN_NAME}:${PLUGIN_TAG}" @docker plugin push ${PLUGIN_NAME}:${PLUGIN_TAG}