Js-ipfs: Docker image in docker hub

Created on 26 Feb 2018  路  5Comments  路  Source: ipfs/js-ipfs

Type:

Feature/Enhancement

Description:

It would be really cool to have js-ipfs docker image releases in docker hub as we currently have for go-ipfs.

Most helpful comment

I've asked for access to the IPFS organization so we can start pushing images to Docker Hub.

All 5 comments

Perhaps @VictorBjelkholm has already done this?

I've asked for access to the IPFS organization so we can start pushing images to Docker Hub.

There is now docker images for js-ipfs on Docker Hub :tada: Builds automatically when branches changes and master branch in git is latest on Docker Hub (idiom for docker builds).

$ docker run -it -p 4001:4002 -p 5001:5002 ipfs/js-ipfs

initializing ipfs node at /root/.jsipfs
generating 2048-bit RSA keypair...done
peer identity: Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS
to get started, enter:

         jsipfs files cat /ipfs/QmfGBRT6BbWJd7yUc2uYdaUZJBbnEFvTqehPFoSMQ6wgdr/readme

Initializing daemon...
Using wrtc for webrtc support
Swarm listening on /ip4/127.0.0.1/tcp/4003/ws/ipfs/Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS
Swarm listening on /ip4/172.17.0.2/tcp/4003/ws/ipfs/Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS
Swarm listening on /ip4/127.0.0.1/tcp/4002/ipfs/Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS
Swarm listening on /ip4/172.17.0.2/tcp/4002/ipfs/Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS
API is listening on: /ip4/0.0.0.0/tcp/5002
Gateway (readonly) is listening on: /ip4/0.0.0.0/tcp/9090
Daemon is ready

$ curl --silent localhost:5001/api/v0/id | jq .ID
"Qmbd5jx8YF1QLhvwfLbCTWXGyZLyEJHrPbtbpRESvYs4FS"

@VictorBjelkholm it would be super helpful if this is documented on the README, can you do that?

Awesome @VictorBjelkholm! Thanks a lot! :smile:

Was this page helpful?
0 / 5 - 0 ratings