added some warning about makefile in readme

This commit is contained in:
Bachir Soussi Chiadmi 2020-02-17 17:00:32 +01:00
parent 5c7980d40c
commit 80d2f170dd

View File

@ -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