1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-01 02:30:39 +08:00

fix(Dockerfile)

removed init so that the image ships no longer ships with an identity. 

TODO Maybe allow `ipfs --init run`?  It's important to keep the initialization process simple.
This commit is contained in:
Brian Tiger Chow
2014-11-02 22:24:11 -08:00
parent ea1576af9b
commit c7e55ef3cf

View File

@ -3,8 +3,6 @@ MAINTAINER Brian Tiger Chow <btc@perfmode.com>
COPY . /go/src/github.com/jbenet/go-ipfs
RUN cd /go/src/github.com/jbenet/go-ipfs/cmd/ipfs && go install
RUN ipfs init
RUN ipfs config Identity.Address "/ip4/0.0.0.0/tcp/4001"
EXPOSE 4001