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
237237
238238### Development usage
239239
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 :
241241
242- Using docker-compose
243242``` bash
244243git clone https://github.com/solid/node-solid-server
245244cd node-solid-server
246245docker-compose up -d
247246```
248247
249- or build image manually and run it :
248+ or these manual commands :
250249
251250``` bash
252251git clone https://github.com/solid/node-solid-server
253252cd node-solid-server
254253docker build -t node-solid-server .
255- ```
256254
257- Run with:
258- ``` bash
259255docker run -p 8443:8443 --name solid node-solid-server
260256```
261257
258+
262259This will enable you to login to solid on https://localhost:8443 and then create a new account
263260but not yet use that account. After a new account is made you will need to create an entry for
264261it 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