https://github.com/CommunitySolidServer/CommunitySolidServer
10K+
The Community Solid Server is open software that provides you with a Solid Pod and identity. This Pod acts as your own personal storage space so you can share data with people and Solid applications.
As an open and modular implementation of the Solid specifications, the Community Solid Server is a great companion:
🧑🏽 for people who want to try out having their own Pod
👨🏿💻 for developers who want to create and test Solid apps
👩🏻🔬 for researchers who want to design new features for Solid
And, of course, for many others who like to experience Solid.
You can install the software locally or on your server and get started with Solid immediately.
| tag | alias for | description |
|---|---|---|
{major}.{minor}.{patch} | {major}.{minor}.{patch} | Exact version {major}.{minor}.{patch} |
{major}.{minor} | {major}.{minor}.x | Latest {patch} of {major}.{minor} |
{major} | {major}.x.x | Latest {minor}.{patch} of {major} |
latest | {major}.{minor}.{patch} | Always latest release ({major}.{minor}.{patch}) |
edge | - | Latest commit on main branch |
next | - | Latest commit on next (upcoming) versions branch |
Docker allows you to run the server without having Node.js installed. Images are built on each tagged version.
# Run the image, serving your `~/Solid` directory on `http://localhost:3000`
docker run --rm -v ~/Solid:/data -p 3000:3000 -it solidproject/community-server:latest
# Or use one of the built-in configurations (https://github.com/CommunitySolidServer/CommunitySolidServer/tree/main/config)
docker run --rm -p 3000:3000 -it solidproject/community-server -c config/default.json
# Or use your own configuration mapped to the right directory
docker run --rm -v ~/solid-config:/config -p 3000:3000 -it solidproject/community-server -c /config/my-config.json
# Or use environment variables to configure your css instance
docker run --rm -v ~/Solid:/data -p 3000:3000 -it -e CSS_CONFIG=config/file-no-setup.json -e CSS_LOGGING_LEVEL=debug solidproject/community-server
See the full Readme on our Github page
Content type
Image
Digest
sha256:73465522d…
Size
81.8 MB
Last updated
about 2 months ago
docker pull solidproject/community-server