@cryptotaxi247 / kubo / commits / e59dc8e49

docker: move to ipfs/go-ipfs image name

License: MIT Signed-off-by: Lars Gierth <larsg@systemli.org>

Lars Gierth committed Feb 6, 2016 at 04:28 UTC e59dc8e49d102c5e288411b3faf3f92eef54c3d4
2 files changed +12 -13
README.md
+12 -12
@@ -118,22 +118,22 @@ USAGE:
118 ipfs [<flags>] <command> [<arg>] ...
119
120 BASIC COMMANDS
121 -
121 +
122 init Initialize ipfs local configuration
123 add <path> Add an object to ipfs
124 cat <ref> Show ipfs object data
125 get <ref> Download ipfs objects
126 ls <ref> List links from an object
127 refs <ref> List hashes of links from an object
128 -
128 +
129 DATA STRUCTURE COMMANDS
130 -
130 +
131 block Interact with raw blocks in the datastore
132 object Interact with raw dag nodes
133 file Interact with Unix filesystem objects
134 -
134 +
135 ADVANCED COMMANDS
136 -
136 +
137 daemon Start a long-running daemon process
138 mount Mount an ipfs read-only mountpoint
139 resolve Resolve any type of name
@@ -141,23 +141,23 @@ USAGE:
141 dns Resolve DNS links
142 pin Pin objects to local storage
143 repo gc Garbage collect unpinned objects
144 -
144 +
145 NETWORK COMMANDS
146 -
146 +
147 id Show info about ipfs peers
148 bootstrap Add or remove bootstrap peers
149 swarm Manage connections to the p2p network
150 dht Query the dht for values or peers
151 ping Measure the latency of a connection
152 diag Print diagnostics
153 -
153 +
154 TOOL COMMANDS
155 -
155 +
156 config Manage configuration
157 version Show ipfs version information
158 update Download and apply go-ipfs updates
159 commands List all available commands
160 -
160 +
161 Use 'ipfs <command> --help' to learn more about each command.
162
163
@@ -185,7 +185,7 @@ Basic proof of 'ipfs working' locally:
185
186 ### Docker usage
187
188 -An IPFS docker image is hosted at [hub.docker.com/r/jbenet/go-ipfs](https://hub.docker.com/r/jbenet/go-ipfs/).
188 +An IPFS docker image is hosted at [hub.docker.com/r/ipfs/go-ipfs](https://hub.docker.com/r/ipfs/go-ipfs/).
189 To make files visible inside the container you need to mount a host directory
190 with the `-v` option to docker. Choose a directory that you want to use to
191 import/export files from IPFS. You should also choose a directory to store
@@ -201,7 +201,7 @@ Make sure docker can access these folders:
201
202 Start a container running ipfs and expose ports 4001, 5001 and 8080:
203
204 - docker run -d --name ipfs_host -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 8080:8080 -p 4001:4001 -p 5001:5001 jbenet/go-ipfs:latest
204 + docker run -d --name ipfs_host -v $ipfs_staging:/export -v $ipfs_data:/data/ipfs -p 8080:8080 -p 4001:4001 -p 5001:5001 ipfs/go-ipfs:latest
205
206 Watch the ipfs log:
207
test/integration/Makefile
-1
@@ -2,7 +2,6 @@
2 # docker environment.
3
4 IPFS_ROOT = ../..
5 -IMAGE = jbenet/go-ipfs-bench
5 CONTAINER = go-ipfs-bench
6 PACKAGE = integrationtest
7 PACKAGE_DIR = test/integration