Makefile 385 B

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