File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff 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
99servers : # # Start all containers
10+ @echo ' ******** Starting all containers... ********'
1011 @docker-compose up -d --build --remove-orphans
1112
1213start : # # Start all containers
1314start : servers
1415
1516stop : # # Stop all containers
17+ @echo ' ******** Stopping all containers... ********'
1618 @docker-compose down
1719
1820restart : # # Restart all containers
1921restart : stop servers
2022
2123certificate : # # 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
2427renewal : # # 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
2731install : # # 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
3035homepage : # # Launch EnvDev homepage in default browser
36+ @echo ' ******** Launch Homepage in browser ********'
3137 @x-www-browser envdev.localhost
You can’t perform that action at this time.
0 commit comments