Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qnib/docker-ipfs
Docker Image holding the IPFS peer2peer filesystem
https://github.com/qnib/docker-ipfs
Last synced: 5 days ago
JSON representation
Docker Image holding the IPFS peer2peer filesystem
- Host: GitHub
- URL: https://github.com/qnib/docker-ipfs
- Owner: qnib
- License: gpl-2.0
- Created: 2015-08-18T12:22:34.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-27T14:24:11.000Z (over 7 years ago)
- Last Synced: 2024-08-02T12:50:40.284Z (3 months ago)
- Language: Shell
- Size: 203 KB
- Stars: 4
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - qnib/docker-ipfs - Docker Image holding the IPFS peer2peer filesystem (others)
README
# docker-ipfs
Docker Image holding the IPFS peer2peer filesystem
## IPFS Hello World
Following the Tutorial on the [ipfs website](http://ipfs.io/docs/getting-started/) a hello world comes down to the following.#### Start stack
```
$ docker-compose up -d
Creating dockeripfs_consul_1...
Creating dockeripfs_ipfs0_1...
Creating dockeripfs_ipfs1_1...
```After a couple of seconds the WebUI is accessible under `:5001/webui/` which will be forwarded to `:5001/ipfs/`.
![](pics/webui_0.3.5.png)Master is using the ipfs-version `0.3.5` (which identifies itself as `0.3.4` - [https://github.com/ipfs/go-ipfs/issues/1810](https://github.com/ipfs/go-ipfs/issues/1810)).
Higher version do not work as expected since, they do not provide NODE INFO.
```
docker-ipfs (master) $ git checkout 0.3.6
docker-ipfs (0.3.6) $ docker-compose up -d
Creating dockeripfs_consul_1...
Creating dockeripfs_ipfs0_1...
Creating dockeripfs_ipfs1_1...
```Results in:
![](pics/webui_0.3.6.png)