docker login if needed

This commit is contained in:
Andreas Neue 2022-09-20 13:13:37 +02:00
parent 41c22f62ab
commit c6683de2b3
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ create-docker-contexts:
@- $(foreach host,$(DEPLOY_HOSTS), \
docker context create $(host) --description "$(host)" --docker "host=ssh://$(SSH_USER)@$(host)"; \
)
pre-deploy-compose: pre-deploy-docker
post-deploy-compose: post-deploy-docker
@ -32,6 +32,7 @@ pull-compose:
@- echo "\n### pulling image(s)"
@- $(foreach ctx,$(DEPLOY_HOSTS), \
docker context use $(ctx); \
if [ $(DOCKER_LOGIN) == 'true' ] then docker login -u $(DOCKER_USER) -p $(DOCKER_PASS) $(DOCKER_REGISTRY) fi; \
docker pull $(DOCKER_IMAGE); \
)