├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── github-commit-ipfs-cid-check.png └── screenshot.png └── scripts └── pin-to-cluster.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | docs 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/README.md -------------------------------------------------------------------------------- /docs/github-commit-ipfs-cid-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/docs/github-commit-ipfs-cid-check.png -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /scripts/pin-to-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/ipfs-dns-deploy/HEAD/scripts/pin-to-cluster.sh --------------------------------------------------------------------------------