Skip to content
/ S5 Public
forked from s5-dev/S5

Decentralized content-addressed storage network

License

Notifications You must be signed in to change notification settings

parajbs-dev/S5

 
 

Repository files navigation

S5

Content-addressed storage, but fast.


Ethos

At its core, S5 is a content-addressed storage network similar to IPFS and also uses many of the formats and standards created in the IPFS project. It just builds upon them to be much more lightweight and scalable. Read the docs for more info on the nitty gritty.

Usage

docker run -it --rm -p 5050:5050 -v /local/path/to/config:/config --name s5-node ghcr.io/s5-dev/node:0.10.0

A basic config file is generated for you, just make sure the path to the directory exists.

Or run it with docker compose

version: '3'
services:
  s5-node:
    image: ghcr.io/s5-dev/node:0.10.0
    volumes:
      - /local/path/to/config:/config
    ports:
      - "5050:5050"
    restart: unless-stopped

To add file stores edit the config as described in the docs.

Supported Storage Backends

  • S3 (Any cloud provider supporting the S3 protocol, see https://s3.wiki)
  • Local filesystem (needs additional configuration to make a http port available on the internet)
  • Sia (experimental and cheap, https://sia.tech/)
  • Arweave (expensive, permanent storage)
  • Pixeldrain (affordable, https://pixeldrain.com/)
  • Estuary.tech (experimental)

License

This project is licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)

About

Decentralized content-addressed storage network

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 91.8%
  • Rust 8.1%
  • Dockerfile 0.1%