diff --git a/README.md b/README.md index 571c443..6e77209 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,9 @@ once inside the mysql container you can use mysql command to drop then create an ## Makefile +do not use directly docker or docker-compose to run this instance +use make instead like ```make up``` + ```makefile build: docker-compose build --build-arg USER_UID=$(USER_UID) --build-arg USER_UNAME=$(USER_UNAME) --build-arg USER_GID=$(USER_GID) --build-arg USER_GNAME=$(USER_GNAME) @@ -126,6 +129,12 @@ up: upbuild: docker-compose up -d --build +ps: + docker-compose ps + +logs: + docker-compose logs -f + down: docker-compose down