Skip to content

Commit e59dc8e

Browse files
author
Lars Gierth
committedFeb 6, 2016
docker: move to ipfs/go-ipfs image name
License: MIT Signed-off-by: Lars Gierth <larsg@systemli.org>
1 parent 5a0b802 commit e59dc8e

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed
 

‎README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -118,46 +118,46 @@ USAGE:
118118
ipfs [<flags>] <command> [<arg>] ...
119119
120120
BASIC COMMANDS
121-
121+
122122
init Initialize ipfs local configuration
123123
add <path> Add an object to ipfs
124124
cat <ref> Show ipfs object data
125125
get <ref> Download ipfs objects
126126
ls <ref> List links from an object
127127
refs <ref> List hashes of links from an object
128-
128+
129129
DATA STRUCTURE COMMANDS
130-
130+
131131
block Interact with raw blocks in the datastore
132132
object Interact with raw dag nodes
133133
file Interact with Unix filesystem objects
134-
134+
135135
ADVANCED COMMANDS
136-
136+
137137
daemon Start a long-running daemon process
138138
mount Mount an ipfs read-only mountpoint
139139
resolve Resolve any type of name
140140
name Publish or resolve IPNS names
141141
dns Resolve DNS links
142142
pin Pin objects to local storage
143143
repo gc Garbage collect unpinned objects
144-
144+
145145
NETWORK COMMANDS
146-
146+
147147
id Show info about ipfs peers
148148
bootstrap Add or remove bootstrap peers
149149
swarm Manage connections to the p2p network
150150
dht Query the dht for values or peers
151151
ping Measure the latency of a connection
152152
diag Print diagnostics
153-
153+
154154
TOOL COMMANDS
155-
155+
156156
config Manage configuration
157157
version Show ipfs version information
158158
update Download and apply go-ipfs updates
159159
commands List all available commands
160-
160+
161161
Use 'ipfs <command> --help' to learn more about each command.
162162
163163
@@ -185,7 +185,7 @@ Basic proof of 'ipfs working' locally:
185185

186186
### Docker usage
187187

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/).
189189
To make files visible inside the container you need to mount a host directory
190190
with the `-v` option to docker. Choose a directory that you want to use to
191191
import/export files from IPFS. You should also choose a directory to store
@@ -201,7 +201,7 @@ Make sure docker can access these folders:
201201

202202
Start a container running ipfs and expose ports 4001, 5001 and 8080:
203203

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
205205

206206
Watch the ipfs log:
207207

‎test/integration/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# docker environment.
33

44
IPFS_ROOT = ../..
5-
IMAGE = jbenet/go-ipfs-bench
65
CONTAINER = go-ipfs-bench
76
PACKAGE = integrationtest
87
PACKAGE_DIR = test/integration

0 commit comments

Comments
 (0)
Please sign in to comment.