Last active
February 3, 2020 00:37
-
-
Save d8vjork/a81bab64d8eec4be2762d7aa00f93ed6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
help: ## Print the help page | |
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) |\ | |
cut -d ':' -f 2,3 |\ | |
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | |
up: ## Start Docker services | |
@docker-compose up -d | |
start: up ## Alias of up | |
down: ## Stop Docker services | |
@docker-compose stop | |
stop: down ## Alias of down | |
restart: stop start ## Restart Docker services | |
jumpin: ## Jump into the application container | |
@docker exec -it ${container} bash | |
... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment