{"id":14956304,"url":"https://github.com/ceramicnetwork/go-ipfs-daemon","last_synced_at":"2025-09-30T11:30:22.144Z","repository":{"id":38273877,"uuid":"417148429","full_name":"ceramicnetwork/go-ipfs-daemon","owner":"ceramicnetwork","description":"This repo builds a Docker image that runs a js-ceramic compatible version of go-ipfs.","archived":false,"fork":false,"pushed_at":"2024-03-19T13:35:32.000Z","size":66,"stargazers_count":6,"open_issues_count":0,"forks_count":8,"subscribers_count":9,"default_branch":"develop","last_synced_at":"2025-01-14T01:49:38.716Z","etag":null,"topics":["ceramic","ceramic-network","go-ipfs","ipfs"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ceramicnetwork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-14T13:49:18.000Z","updated_at":"2024-05-30T12:24:18.000Z","dependencies_parsed_at":"2024-03-19T14:02:29.307Z","dependency_job_id":null,"html_url":"https://github.com/ceramicnetwork/go-ipfs-daemon","commit_stats":{"total_commits":95,"total_committers":7,"mean_commits":"13.571428571428571","dds":0.4842105263157894,"last_synced_commit":"f19c96be94a93060b492d0773b942caf76ed6df5"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceramicnetwork%2Fgo-ipfs-daemon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceramicnetwork%2Fgo-ipfs-daemon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceramicnetwork%2Fgo-ipfs-daemon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceramicnetwork%2Fgo-ipfs-daemon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ceramicnetwork","download_url":"https://codeload.github.com/ceramicnetwork/go-ipfs-daemon/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234728057,"owners_count":18877708,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ceramic","ceramic-network","go-ipfs","ipfs"],"created_at":"2024-09-24T13:12:40.735Z","updated_at":"2025-09-30T11:30:21.529Z","avatar_url":"https://github.com/ceramicnetwork.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-ipfs-daemon\n\n**WIP**\n\nThis repo builds a Docker image that runs a [js-ceramic](https://github.com/ceramicnetwork/js-ceramic) compatible version of [go-ipfs](https://github.com/ipfs/go-ipfs).\n\nThe go-ipfs daemon that this image runs supports resolving dag-jose objects, using S3 for a sharded datastore, and serving a healthcheck endpoint.\n\n## Usage\n\nSimply pull the [ceramicnetwork/go-ipfs-daemon image from Dockerhub](https://hub.docker.com/r/ceramicnetwork/go-ipfs-daemon)\n\n```sh\ndocker pull ceramicnetwork/go-ipfs-daemon\n```\n\nOr you can download the source code and build the image on your machine\n\n```sh\ngit clone \u003cthis_repo_url\u003e\n\ncd go-ipfs-daemon\n\ndocker build . -t go-ipfs-daemon\n```\n\nRun a container\n\n```sh\ndocker run \\\n  -p 5001:5001 \\ # API port\n  -p 8011:8011 # Healthcheck port\n  go-ipfs-daemon\n```\n\nYou may want to use S3 for the IPFS Blockstore. See the [go-ds-s3 plugin](https://github.com/3box/go-ds-s3#configuration) for more configuration details.\n\n```sh\n# Fill in your credentials below\ndocker run \\\n  -p 5001:5001 \\ # API port\n  -p 8011:8011 \\ # Healthcheck port\n  -e IPFS_ENABLE_S3=true \\\n  -e IPFS_S3_REGION= \\\n  -e IPFS_S3_BUCKET_NAME= \\\n  -e IPFS_S3_ROOT_DIRECTORY= \\\n  -e IPFS_S3_ACCESS_KEY_ID= \\\n  -e IPFS_S3_SECRET_ACCESS_KEY= \\\n  -e IPFS_S3_KEY_TRANSFORM=next-to-last/2 \\\n  go-ipfs-daemon\n\n# Get the container id\ndocker ps\n\n# Run ipfs commands\ndocker exec -i \u003ccontainer_id\u003e sh -c \"ipfs version\"\n```\n\nAWS IAM permissions\n```json\n{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": [\n        {\n            \"Action\": [\n                \"s3:GetObject\",\n                \"s3:ListBucket\",\n                \"s3:PutObject\",\n                \"s3:DeleteObject\"\n            ],\n            \"Effect\": \"Allow\",\n            \"Resource\": [\n                \"arn:aws:s3:::bucket_name\",\n                \"arn:aws:s3:::bucket_name/*\"\n            ]\n        }\n    ]\n}\n```\n\n## Maintainer\n\n[@v-stickykeys](https://github.com/v-stickykeys)\n\n## Contributing\n\nWe are happy to accept small and large contributions.\n\n1. Clone this repository\n1. `cd go-ipfs-daemon`\n1. Install pre-commit. E.g. `brew install pre-commit`\n1. Run `pre-commit install`\n\n### Testing\n\n```\n./test/bats/bin/bats test\n```\n\n## License\n\nDual-licensed under Apache 2.0 and MIT terms:\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/ipfs/go-ipfs/blob/master/LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](https://github.com/ipfs/go-ipfs/blob/master/LICENSE-MIT) or http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceramicnetwork%2Fgo-ipfs-daemon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fceramicnetwork%2Fgo-ipfs-daemon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceramicnetwork%2Fgo-ipfs-daemon/lists"}