From 3d38f0e6af7eeb79ca37d40cbc424187d30ac708 Mon Sep 17 00:00:00 2001 From: nemunaire Date: Sat, 20 Oct 2018 01:52:29 +0200 Subject: [PATCH] dockerfile: fix -bind argument call --- tutorial/dockerfiles/entrypoint.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/dockerfiles/entrypoint.md b/tutorial/dockerfiles/entrypoint.md index 28288dc..20ef7ea 100644 --- a/tutorial/dockerfiles/entrypoint.md +++ b/tutorial/dockerfiles/entrypoint.md @@ -10,7 +10,7 @@ allons faire en sorte que notre image permette d'ĂȘtre utilisĂ©e ainsi :
``` - 42sh$ docker run -d -p 80:80 youp0m -bind 80 + 42sh$ docker run -d -p 80:80 youp0m -bind :80 ```
@@ -20,7 +20,7 @@ lequel il va trouver le bon binaire :
``` - 42sh$ docker run -d -p 80:80 youp0m /srv/youp0m -bind 80 + 42sh$ docker run -d -p 80:80 youp0m /srv/youp0m -bind :80 ```
@@ -103,7 +103,7 @@ Par exemple :
``` - 42sh$ docker run -d -p 8081:8081 -e YOUP0M_USERNAME=admin -e YOUP0M_PASSWORD=admin youp0m -bind=8081 + 42sh$ docker run -d -p 8081:8081 -e YOUP0M_USERNAME=admin -e YOUP0M_PASSWORD=admin youp0m -bind=:8081 42sh$ curl -u admin:badpasswd http://localhost:8081/admin/ You are not allowed to perform this request.