open-pod/Makefile

14 lines
385 B
Makefile
Raw Normal View History

.PHONY: up
up: ## Start all the services
docker-compose up -d --remove-orphans
.PHONY: start
start: up ## Start openpod application
docker-compose exec open-pod iex -S mix phx.server
stop: ## Shoutdown services
docker-compose down -v
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'