Skip to content

Commit 75455a8

Browse files
committed
ci: Fix pull plugin (grant permission to install)
1 parent 2eb90ec commit 75455a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enable: install
3838

3939
pull: clean
4040
@echo "### install plugin ${PLUGIN_NAME}:${PLUGIN_TAG}"
41-
docker plugin install ${PLUGIN_NAME}:${PLUGIN_TAG}
41+
docker plugin install --grant-all-permissions ${PLUGIN_NAME}:${PLUGIN_TAG}
4242

4343
push: install
4444
@echo "### push plugin ${PLUGIN_NAME}:${PLUGIN_TAG}"
@@ -55,4 +55,4 @@ node-test:
5555

5656
integration:
5757
docker build -t "${PLUGIN_NAME}-e2e" tests/e2e
58-
docker run -v /var/run/docker.sock:/var/run/docker.sock -e JOURNAL_TOKEN -e JOURNAL_ID "${PLUGIN_NAME}-e2e"
58+
docker run -v /var/run/docker.sock:/var/run/docker.sock -e JOURNAL_TOKEN -e JOURNAL_ID "${PLUGIN_NAME}-e2e"

0 commit comments

Comments
 (0)