You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-41Lines changed: 2 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,7 +218,7 @@ $ solid start --help
218
218
--support-email [value] The support email you provide for your users (not required)
219
219
-q, --quiet Do not print the logs to console
220
220
-h, --help output usage information
221
-
```
221
+
```
222
222
223
223
Instead of using flags, these same options can also be configured via environment variables taking the form of `SOLID_` followed by the `SNAKE_CASE` of the flag. For example `--api-apps` can be set via the `SOLID_API_APPS`environment variable, and `--serverUri` can be set with `SOLID_SERVER_URI`.
224
224
@@ -228,47 +228,8 @@ Configuring Solid via the config file can be a concise and convenient method and
228
228
229
229
## Use Docker
230
230
231
-
Pull with:
232
-
233
-
```bash
234
-
docker pull nodesolidserver/node-solid-server
235
-
```
236
-
237
-
Run with:
238
-
```bash
239
-
docker run -p 8443:8443 --name solid nodesolidserver/node-solid-server
240
-
```
231
+
See the [documentation to run Solid using docker and docker-compose](https://github.com/solid/node-solid-server/tree/master/docker-image).
241
232
242
-
This will enable you to login to solid on https://localhost:8443 and then create a new account
243
-
but not yet use that account. After a new account is made you will need to create an entry for
244
-
it in your local (/etc/)hosts file in line with the account and subdomain, i.e. --
245
-
```pre
246
-
127.0.0.1 newsoliduser.localhost
247
-
```
248
-
Then you'll be able to use solid as intended.
249
-
250
-
You can modify the config within the docker container as follows:
251
-
252
-
- Copy the config to the current directory with:
253
-
```
254
-
docker cp solid:/usr/src/app/config.json .
255
-
```
256
-
- Edit the `config.json` file
257
-
- Copy the file back with
258
-
```
259
-
docker cp config.json solid:/usr/src/app/
260
-
```
261
-
- Restart the server with
262
-
```
263
-
docker restart solid
264
-
```
265
-
266
-
If you want to help improve the Docker image, then you can build it locally with:
0 commit comments