Model/model_data/simulation_system/Makefile

14 lines
No EOL
165 B
Makefile

.PHONY: init
init: build docker
.PHONY: build
build:
docker-compose build
.PHONY: docker
docker:
docker-compose up -d
.PHONY: down
down:
docker compose down