From 4c91a22a0b01ada0c01af3bc129700933f3d1ad7 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 15 Oct 2018 11:27:09 +0200 Subject: [PATCH 1/3] Updated the command to run the Docker image --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 1e58a16d279..86b35353bd8 100644 --- a/README.markdown +++ b/README.markdown @@ -30,5 +30,5 @@ You can build the doc locally with these commands: $ docker build . -t symfony-docs # ...and serve it locally on http//:127.0.0.1 -$ docker run --rm -p80:80 symfony-docs +$ docker run -d -p 127.0.0.1:80:80 --name symfony-docs symfony-docs ``` From aad8041656376aa0ee058e1645ce58b9139cd24c Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 15 Oct 2018 12:31:21 +0200 Subject: [PATCH 2/3] Updated the command --- README.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 86b35353bd8..e0e824a3cba 100644 --- a/README.markdown +++ b/README.markdown @@ -29,6 +29,7 @@ You can build the doc locally with these commands: # build the image... $ docker build . -t symfony-docs -# ...and serve it locally on http//:127.0.0.1 -$ docker run -d -p 127.0.0.1:80:80 --name symfony-docs symfony-docs +# ...and serve it locally on http//:127.0.0.1:8080 +# (if it's alread in use, change the '8080' port by any other port) +$ docker run --rm -p 8080:80 symfony-docs ``` From 42a3b20574d04d50996177a1e3a90bd312579939 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 15 Oct 2018 16:00:14 +0200 Subject: [PATCH 3/3] Typo --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index e0e824a3cba..557bd5e3a6d 100644 --- a/README.markdown +++ b/README.markdown @@ -30,6 +30,6 @@ You can build the doc locally with these commands: $ docker build . -t symfony-docs # ...and serve it locally on http//:127.0.0.1:8080 -# (if it's alread in use, change the '8080' port by any other port) +# (if it's already in use, change the '8080' port by any other port) $ docker run --rm -p 8080:80 symfony-docs ```