-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
16 lines (11 loc) · 4.04 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: build
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
build: ## Build the Docker image
docker-compose -p devedmonton build
up: build ## Bring the container up
docker-compose -p devedmonton up -d
down: ## Stop the container
docker-compose -p devedmonton stop
enter: ## Enter the running container
docker-compose -p devedmonton exec backend /bin/bash