mirror of
https://github.com/gsi-upm/senpy
synced 2024-10-31 23:41:41 +00:00
22 lines
582 B
Makefile
22 lines
582 B
Makefile
|
IMAGEWTAG ?= $(IMAGENAME):$(VERSION)
|
||
|
|
||
|
login: ## Log in to the registry. It will only be used in the server, or when running a CI task locally (if CI_BUILD_TOKEN is set).
|
||
|
ifeq ($(CI_BUILD_TOKEN),)
|
||
|
@echo "Not logging in to the docker registry" "$(CI_REGISTRY)"
|
||
|
else
|
||
|
@docker login -u gitlab-ci-token -p $(CI_BUILD_TOKEN) $(CI_REGISTRY)
|
||
|
endif
|
||
|
ifeq ($(HUB_USER),)
|
||
|
@echo "Not logging in to global the docker registry"
|
||
|
else
|
||
|
@docker login -u $(HUB_USER) -p $(HUB_PASSWORD)
|
||
|
endif
|
||
|
|
||
|
clean:: ## Remove docker credentials
|
||
|
ifeq ($(HUB_USER),)
|
||
|
else
|
||
|
@docker logout
|
||
|
endif
|
||
|
|
||
|
.PHONY:: login clean
|