Update docker command in README

Mention the need for a config.
This commit is contained in:
Daniel Wiesenberg 2021-03-12 21:07:43 +01:00
parent 52a96b3d84
commit beb428d866
2 changed files with 6 additions and 3 deletions

View file

@ -82,9 +82,11 @@ Pull and run the docker image with
``` bash
docker pull matrixconduit/matrix-conduit:latest
docker run -d -p 8448:8000 -v db:/srv/conduit/.local/share/conduit matrixconduit/matrix-conduit:latest
docker run -d -p 8448:8000 -v ~/conduit.toml:/srv/conduit/conduit.toml -v db:/srv/conduit/.local/share/conduit matrixconduit/matrix-conduit:latest
```
> <b>Note:</b> You also need to supply a `conduit.toml` config file, you can find an example [here](./conduit-example.toml).
Or build and run it with docker or docker-compose. [Read more](docker/README.md)