Browse code

Remove trailing slash from host parameter in docker init.

(This causes errors on Docker 0.8)

Docker-DCO-1.1-Signed-off-by: Morgante Pell <morgante.pell@morgante.net> (github: morgante)

Morgante Pell authored on 2014/02/24 04:36:21
Showing 1 changed files
... ...
@@ -31,7 +31,7 @@ stop on runlevel [!2345]
31 31
 respawn
32 32
 
33 33
 script
34
-    /usr/bin/docker -d -H=tcp://0.0.0.0:4243/
34
+    /usr/bin/docker -d -H=tcp://0.0.0.0:4243
35 35
 end script
36 36
 ```
37 37