1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-10-10 16:15:01 +08:00

fix(docker) listen on all interfaces

This commit is contained in:
Brian Tiger Chow
2014-09-16 03:47:31 -07:00
parent 8bd381ed32
commit ee49d0b79f

View File

@ -8,7 +8,7 @@ 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/127.0.0.1/tcp/4001"
RUN ipfs config Identity.Address "/ip4/0.0.0.0/tcp/4001"
RUN mkdir /ipfs
EXPOSE 4001