aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 09dff25ab03cfc924974a7750cc2d66f3d6952c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.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 docker_storm build

up: build ## Bring the container up
	docker-compose -p docker_storm up -d

down: ## Stop the container
	docker-compose -p docker_storm stop

enter: ## Enter the running container
	docker-compose -p docker_storm exec backend /bin/bash

enter_nimbus: ## Enter the running nimbus container
	docker-compose -p docker_storm exec nimbus /bin/bash

clean: down ## Remove stoped containers
	docker-compose -p docker_storm rm -f