Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.16.0
v13.2.0
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ Configuring Solid via the config file can be a concise and convenient method and

## Use Docker

Build with:
Pull with:

```bash
docker build -t node-solid-server .
docker pull nodesolidserver/node-solid-server
```

Run with:
```bash
docker run -p 8443:8443 --name solid node-solid-server
docker run -p 8443:8443 --name solid nodesolidserver/node-solid-server
```

This will enable you to login to solid on https://localhost:8443 and then create a new account
Expand All @@ -242,6 +242,14 @@ You can modify the config within the docker container as follows:
- Copy the file back with `docker cp config.json solid:/usr/src/app/`
- Restart the server with `docker restart solid`

If you want to help improve the Docker image, then you can build it locally with:
```bash
git clone https://github.com/solid/node-solid-server
cd node-solid-server
docker build .
```
We have automatic builds set up so commits to master will trigger a build of https://hub.docker.com/r/nodesolidserver/node-solid-server.

## Library Usage

### Install Dependencies
Expand Down