Skip to content

Commit e81448a

Browse files
author
Vincent Faliès
committed
Add comment in makefile
1 parent 1796638 commit e81448a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,31 @@ help: ## Show this help
77
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
88

99
servers: ## Start all containers
10+
@echo '******** Starting all containers... ********'
1011
@docker-compose up -d --build --remove-orphans
1112

1213
start: ## Start all containers
1314
start: servers
1415

1516
stop: ## Stop all containers
17+
@echo '******** Stopping all containers... ********'
1618
@docker-compose down
1719

1820
restart: ## Restart all containers
1921
restart: stop servers
2022

2123
certificate: ## Generate a SSL certificate
24+
@echo '******** Generate a SSL certificate ********'
2225
@docker run -ti --rm -v $(shell pwd)/conf/ssl:/app/ssl vfac/certificates /app/certificate.sh
2326

2427
renewal: ## Renewal a knowed SSL certificate
28+
@echo '******** Renew a SSL certificate ********'
2529
@docker run -ti --rm -v $(shell pwd)/conf/ssl:/app/ssl vfac/certificates /app/regenerate_certificate.sh
2630

2731
install: ## Install EnvDev container environment
32+
@echo '******** Install EnvDev container environment ********'
2833
@docker-compose build --force-rm --no-cache && docker run --rm -v $(shell pwd):/var/www/html -u "$(USER_ID):$(GROUP_ID)" vfac/envdevphpbase:$(PHP_VERSION) sh -c "cd /var/www/html/home/envdev; composer update --lock"
2934

3035
homepage: ## Launch EnvDev homepage in default browser
36+
@echo '******** Launch Homepage in browser ********'
3137
@x-www-browser envdev.localhost

0 commit comments

Comments
 (0)