Browse Source

Change run target to execute all pipeline

develop
Apostolos Fanakis 4 years ago
parent
commit
59622a9e83
  1. 11
      docker/Makefile

11
docker/Makefile

@ -2,14 +2,17 @@ PACKAGES := $(abspath ${CURDIR}/../packages)
REPORTS := $(abspath ${CURDIR}/reports)
GANACHE_VOLUMES := $(abspath ${CURDIR}/ganache/volumes)
run: compose-run build-contracts-migrate run-contracts-migrate build-app run-app
@echo "Concordia is up and running, head over to http://localhost:7777."
# Targets for building/running/stopping the blockchain and rendezvous server (using the docker-compose file)
build:
compose-build:
@docker-compose -f ./docker-compose.yml -p concordia build
run:
compose-run:
@docker-compose -f ./docker-compose.yml -p concordia up -d
stop:
compose-stop:
@docker-compose -f ./docker-compose.yml -p concordia down
stop-clean-data:
compose-stop-clean-data:
@docker-compose -f ./docker-compose.yml -p concordia down -v
# Ganache targets

Loading…
Cancel
Save