File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1+ help :
2+ @echo " Available commands:"
3+ @echo " run Start app and services using Docker."
4+ @echo " stop-all Stop all services running on Docker."
5+ @echo " remove Remove all Docker containers."
6+ @echo " clean Remove temporary and cache files."
7+
18run :
29 docker compose up -d
310
714stop-all :
815 docker compose stop $(docker ps -q )
916
17+ remove :
18+ docker compose down
19+
1020clean :
11- rm -rf node_modules/ uploads/* .pdf
21+ rm -rf node_modules/ uploads/* .pdf
Original file line number Diff line number Diff line change @@ -84,12 +84,10 @@ cp .env.example .env
8484> From the app's root directory, run the following command to build and running docker containers:
8585
8686` ` ` shell
87- make build
88- # or
8987make run
9088` ` `
9189
92- > The application will be available at `http://localhost:3000`.<br>For more commands see `Makefile`.
90+ > The application will be available at `http://localhost:3000`.<br>For more commands see `Makefile` or run `make help` .
9391
9492# # Documentation
9593
You can’t perform that action at this time.
0 commit comments