Skip to content

Commit 3d0683c

Browse files
committed
Remove outdated instructions about running using Docker from README.md, and redirect the user to the docker-images/README documentation page
1 parent 92f5fa2 commit 3d0683c

File tree

1 file changed

+2
-41
lines changed

1 file changed

+2
-41
lines changed

README.md

Lines changed: 2 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ $ solid start --help
218218
--support-email [value] The support email you provide for your users (not required)
219219
-q, --quiet Do not print the logs to console
220220
-h, --help output usage information
221-
```
221+
```
222222

223223
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`.
224224

@@ -228,47 +228,8 @@ Configuring Solid via the config file can be a concise and convenient method and
228228

229229
## Use Docker
230230

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).
241232

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:
267-
```bash
268-
git clone https://github.com/solid/node-solid-server
269-
cd node-solid-server
270-
docker build .
271-
```
272233
We have automatic builds set up, so commits to master will trigger a build of https://hub.docker.com/r/nodesolidserver/node-solid-server.
273234

274235
## Library Usage

0 commit comments

Comments
 (0)