No Description

Fabian Peter Hammerle 27231e60a5 readme: add deprecation warning 1 year ago
.github 90af6630a7 Bump docker/setup-buildx-action from 1.7.0 to 2.0.0 1 year ago
CHANGELOG.md e96c188f9d release v1.1.0 1 year ago
Dockerfile f7d1468432 entrypoint: support changing gateway address & port via environment variable IPFS_GATEWAY_ADDR (default: 127.0.0.1:8080) 1 year ago
Makefile 02d7d0dd96 makefile: fix detection of project version for v1.* 2 years ago
README.md 27231e60a5 readme: add deprecation warning 1 year ago
docker-compose.yml f7d1468432 entrypoint: support changing gateway address & port via environment variable IPFS_GATEWAY_ADDR (default: 127.0.0.1:8080) 1 year ago
entrypoint.sh f7d1468432 entrypoint: support changing gateway address & port via environment variable IPFS_GATEWAY_ADDR (default: 127.0.0.1:8080) 1 year ago
ipfs-arch.sh a27ee2a2bf fixed ipfs-arch.sh 5 years ago

README.md

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 -