This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
idhub-docker/Makefile

48 lines
1.3 KiB
Makefile

project := dkr-dsg.ac.upc.edu/trustchain-oc1-orchestral
# docker images
# docker images
####
# orchestra image tag
####
orchestra_branch := `git -C django-orchestra branch --show-current`
orchestra_commit := `git -C django-orchestra log -1 --format=%h`
orchestra_tag := ${orchestra_branch}__${orchestra_commit}
orchestra_image := ${project}/orchestra:${orchestra_tag}
####
# musician image tag
####
musician_branch := `git -C django-musician branch --show-current`
musician_commit := `git -C django-musician log -1 --format=%h`
musician_tag := ${orchestra_branch}__${musician_commit}
musician_image := ${project}/musician:${musician_tag}
####
# idhub image tag
####
idhub_branch := `git -C django-idhub branch --show-current`
idhub_commit := `git -C django-idhub log -1 --format=%h`
idhub_tag := ${orchestra_branch}__${idhub_commit}
idhub_image := ${project}/idhub:${idhub_tag}
docker_build:
docker build -f docker/orchestra.Dockerfile -t ${orchestra_image} .
docker build -f docker/musician.Dockerfile -t ${musician_image} .
docker_publish:
docker push ${orchestra_image}
docker push ${musician_image}
.PHONY: docker
docker:
$(MAKE) docker_build
$(MAKE) docker_publish
@printf "\nimage: ${orchestra_image}\n"
@printf "\nimage: ${musician_image}\n"
@printf "\ndocker images built and published\n"