From 80d2f170dd32b4da01c395f6a7abef24360a8474 Mon Sep 17 00:00:00 2001 From: Bachir Soussi Chiadmi Date: Mon, 17 Feb 2020 17:00:32 +0100 Subject: [PATCH] added some warning about makefile in readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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