blob: accd178a85b75abd501e9630246a97fe48396057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.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 firefox build
up: build ## Bring the container up
xhost local:1000
docker-compose -p firefox up -d
down: ## Stop the container
docker-compose -p firefox stop
enter: ## Enter the running container
docker-compose -p firefox exec backend /bin/bash
clean: down ## Remove stoped containers
docker-compose -p firefox rm
|