README.md 2.0 KB

docker: ipfs 🐳

golang-implementation of the interplanetary file system (ipfs) daemon

DEPRECATED since the official image now supports configuration via /container-init.d (docs, commit)

docker hub: https://hub.docker.com/r/fphammerle/ipfs/

signed docker image digests: https://github.com/fphammerle/docker-ipfs/tags

ipfs config: guide & docs

docker run --name ipfs fphammerle/ipfs

or after cloning the repository:

docker-compose up

Restart Automatically

docker run --name ipfs \
    --cap-drop=all --security-opt=no-new-privileges \
    --detach --restart=unless-stopped \
    fphammerle/ipfs:latest

Publish HTTP Gateway

docker run -e IPFS_GATEWAY_ADDR=/ip4/0.0.0.0/tcp/8080 -p 8080:8080 …

Change Swarm Listener Ports

docker run -e IPFS_SWARM_ADDRS="/ip4/0.0.0.0/tcp/4021 /ip6/::/tcp/4021" …

Disable Swarm Listener

docker run -e IPFS_SWARM_ADDRS="" …

Add Bootstrap Nodes / Peers

docker run -e IPFS_BOOTSTRAP_ADD='/dnsaddr/ipfs1.net/tcp/4001/QmPeerId /dnsaddr/ipfs2.net/tcp/4001/QmPeerId' …

Disable API Access From Host

docker run -e IPFS_API_ADDR=/ip4/127.0.0.1/tcp/5001 …

Publish Clipboard

xsel -b | sudo docker exec -i ipfs ipfs add -