@cryptotaxi247 / kubo / commits / 2329ca117

Formatting bug

Michael Lovci committed Apr 13, 2015 at 18:47 UTC 2329ca117c21204bb82327cf53f9b7c86a7bf96b
1 file changed +8 -2
README.md
+8 -2
@@ -104,11 +104,17 @@ Start a container running ipfs and expose ports 4001, 5001 and 8080:
104
105 docker run -d --name ipfs_host -v $ipfs_staging:/export -v $ipfs_data:/root/.go-ipfs -p 8080:8080 -p 4001:4001 -p 5001:5001 jbenet/go-ipfs:latest
106
107 +Watch the ipfs log:
108 +
109 + docker logs -f ipfs_host
110 +
111 Wait for ipfs to start. ipfs is running when you see:
112
113 Gateway (readonly) server
110 - listening on /ip4/0.0.0.0/tcp/8080" in the container logs (`docker logs -f ipfs_host`)
111 -
114 + listening on /ip4/0.0.0.0/tcp/8080
115 +
116 +(you can now stop watching the log)
117 +
118 Run ipfs commands:
119
120 docker exec ipfs_host ipfs <args...>