Browse Source

added some warning about makefile in readme

Bachir Soussi Chiadmi 4 years ago
parent
commit
80d2f170dd
1 changed files with 9 additions and 0 deletions
  1. 9 0
      README.md

+ 9 - 0
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