mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
20 lines
645 B
Makefile
20 lines
645 B
Makefile
.PHONY: help
|
|
|
|
APP_NAME ?= `grep 'app:' mix.exs | sed -e 's/\[//g' -e 's/ //g' -e 's/app://' -e 's/[:,]//g'`
|
|
APP_VSN ?= `grep 'version:' mix.exs | cut -d '"' -f2`
|
|
BUILD ?= `git rev-parse --short HEAD`
|
|
|
|
help:
|
|
@echo "$(APP_NAME):$(APP_VSN)-$(BUILD)"
|
|
@perl -nle'print $& if m{^[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 build \
|
|
-t $(APP_NAME):$(APP_VSN)-$(BUILD) \
|
|
-t $(APP_NAME) .
|
|
|
|
run: ## Run the app in Docker
|
|
@docker run --env-file config/docker.env \
|
|
--expose 4000 -p 4000:4000 \
|
|
--rm -it $(APP_NAME)
|