From 91d50b2b688f6cea7b514daa5daf5d9c772ef815 Mon Sep 17 00:00:00 2001 From: Atef Ben Ali Date: Sun, 21 Jul 2019 15:14:26 +0200 Subject: [PATCH 1/2] Add `running with docker` instructions --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 189fa566..91b4a16f 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,12 @@ To run the application in development, you can run these commands cd [my-app-name] php composer.phar start + +Or you can use `docker-compose` to run the app with `docker`, so you can run these commands: + + `cd [my-app-name] + docker-compose up -d` +After that, open `http://0.0.0.0:8080` in your browser. Run this command in the application directory to run the test suite From a71d960391e7eaeea897ca330202c3e8a632dda4 Mon Sep 17 00:00:00 2001 From: Atef Ben Ali Date: Sun, 21 Jul 2019 15:20:47 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91b4a16f..21e7f4b0 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ To run the application in development, you can run these commands Or you can use `docker-compose` to run the app with `docker`, so you can run these commands: - `cd [my-app-name] - docker-compose up -d` + cd [my-app-name] + docker-compose up -d After that, open `http://0.0.0.0:8080` in your browser. Run this command in the application directory to run the test suite