Sem descrição

Fabian Peter Hammerle a27ee2a2bf fixed ipfs-arch.sh há 5 anos atrás
Dockerfile cf94f4c445 select ipfs arch depending on hardware arch há 5 anos atrás
README.md 829e3db71c readme: change subsection header há 5 anos atrás
entrypoint.sh e925fa7efe bootstrap node addition: fix failure when api not running há 5 anos atrás
ipfs-arch.sh a27ee2a2bf fixed ipfs-arch.sh há 5 anos atrás

README.md

docker: ipfs 🐳

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

container repo: https://git.hammerle.me/fphammerle/docker-ipfs

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

ipfs config guide: https://docs.ipfs.io/guides/examples/config/

docker run --name ipfs fphammerle/ipfs

restart automatically

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

change swarm listener ports

docker run --name ipfs \
    --env IPFS_SWARM_ADDRS="/ip4/0.0.0.0/tcp/4021 /ip6/::/tcp/4021" \
    fphammerle/ipfs:latest

disable swarm listener

docker run --name ipfs \
    --env IPFS_SWARM_ADDRS="" \
    fphammerle/ipfs:latest

add bootstrap peers

docker run --name ipfs \
    --env IPFS_BOOTSTRAP_ADD='/dnsaddr/ipfs1.net/tcp/4001/QmPeerId /dnsaddr/ipfs2.net/tcp/4001/QmPeerId' \
    fphammerle/ipfs:latest

publish clipboard

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