File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -216,15 +216,15 @@ Configuring Solid via the config file can be a concise and convenient method and
216
216
217
217
## Use Docker
218
218
219
- Build with:
219
+ Pull with:
220
220
221
221
``` bash
222
- docker build -t node-solid-server .
222
+ docker pull nodesolidserver/ node-solid-server
223
223
```
224
224
225
225
Run with:
226
226
``` bash
227
- docker run -p 8443:8443 --name solid node-solid-server
227
+ docker run -p 8443:8443 --name solid nodesolidserver/ node-solid-server
228
228
```
229
229
230
230
This will enable you to login to solid on https://localhost:8443 and then create a new account
@@ -242,6 +242,14 @@ You can modify the config within the docker container as follows:
242
242
- Copy the file back with ` docker cp config.json solid:/usr/src/app/ `
243
243
- Restart the server with ` docker restart solid `
244
244
245
+ If you want to help improve the Docker image, then you can build it locally with:
246
+ ``` bash
247
+ git clone https://github.com/solid/node-solid-server
248
+ cd node-solid-server
249
+ docker build .
250
+ ```
251
+ We have a automatic builds set up so commits to master will trigger a build of https://hub.docker.com/r/nodesolidserver/node-solid-server .
252
+
245
253
## Library Usage
246
254
247
255
### Install Dependencies
You can’t perform that action at this time.
0 commit comments