File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -237,28 +237,25 @@ We have automatic builds set up, so commits to master will trigger a build of ht
237
237
238
238
### Development usage
239
239
240
- If you want to use Docker in development, then you can build it locally with:
240
+ If you want to use Docker in development, you can build and run the image locally with either docker-compose :
241
241
242
- Using docker-compose
243
242
``` bash
244
243
git clone https://github.com/solid/node-solid-server
245
244
cd node-solid-server
246
245
docker-compose up -d
247
246
```
248
247
249
- or build image manually and run it :
248
+ or these manual commands :
250
249
251
250
``` bash
252
251
git clone https://github.com/solid/node-solid-server
253
252
cd node-solid-server
254
253
docker build -t node-solid-server .
255
- ```
256
254
257
- Run with:
258
- ``` bash
259
255
docker run -p 8443:8443 --name solid node-solid-server
260
256
```
261
257
258
+
262
259
This will enable you to login to solid on https://localhost:8443 and then create a new account
263
260
but not yet use that account. After a new account is made you will need to create an entry for
264
261
it in your local (/etc/)hosts file in line with the account and subdomain, i.e. --
You can’t perform that action at this time.
0 commit comments