@@ -118,46 +118,46 @@ USAGE:
118
118
ipfs [<flags>] <command> [<arg>] ...
119
119
120
120
BASIC COMMANDS
121
-
121
+
122
122
init Initialize ipfs local configuration
123
123
add <path> Add an object to ipfs
124
124
cat <ref> Show ipfs object data
125
125
get <ref> Download ipfs objects
126
126
ls <ref> List links from an object
127
127
refs <ref> List hashes of links from an object
128
-
128
+
129
129
DATA STRUCTURE COMMANDS
130
-
130
+
131
131
block Interact with raw blocks in the datastore
132
132
object Interact with raw dag nodes
133
133
file Interact with Unix filesystem objects
134
-
134
+
135
135
ADVANCED COMMANDS
136
-
136
+
137
137
daemon Start a long-running daemon process
138
138
mount Mount an ipfs read-only mountpoint
139
139
resolve Resolve any type of name
140
140
name Publish or resolve IPNS names
141
141
dns Resolve DNS links
142
142
pin Pin objects to local storage
143
143
repo gc Garbage collect unpinned objects
144
-
144
+
145
145
NETWORK COMMANDS
146
-
146
+
147
147
id Show info about ipfs peers
148
148
bootstrap Add or remove bootstrap peers
149
149
swarm Manage connections to the p2p network
150
150
dht Query the dht for values or peers
151
151
ping Measure the latency of a connection
152
152
diag Print diagnostics
153
-
153
+
154
154
TOOL COMMANDS
155
-
155
+
156
156
config Manage configuration
157
157
version Show ipfs version information
158
158
update Download and apply go-ipfs updates
159
159
commands List all available commands
160
-
160
+
161
161
Use 'ipfs <command> --help' to learn more about each command.
162
162
163
163
@@ -185,7 +185,7 @@ Basic proof of 'ipfs working' locally:
185
185
186
186
### Docker usage
187
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
189
To make files visible inside the container you need to mount a host directory
190
190
with the ` -v ` option to docker. Choose a directory that you want to use to
191
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
201
202
202
Start a container running ipfs and expose ports 4001, 5001 and 8080:
203
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
205
206
206
Watch the ipfs log:
207
207
0 commit comments