Update README.md
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
This commit is contained in:
parent
231878bae0
commit
5bb49aeba6
24
README.md
24
README.md
|
@ -53,6 +53,30 @@ docker run -d --name mjolnir \
|
||||||
-e WEB_LISTEN_ADDRESS='0.0.0.0' \
|
-e WEB_LISTEN_ADDRESS='0.0.0.0' \
|
||||||
git.nixc.us/colin/mjolnir:production
|
git.nixc.us/colin/mjolnir:production
|
||||||
```
|
```
|
||||||
|
### docker-compose.yml
|
||||||
|
```yaml
|
||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
mjolnir:
|
||||||
|
image: git.nixc.us/colin/mjolnir:production
|
||||||
|
container_name: mjolnir
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
- ./config/config.yml:/etc/mjolnir/config.yml
|
||||||
|
environment:
|
||||||
|
- HOME_SERVER_URL=https://matrix.org
|
||||||
|
- RAW_HOME_SERVER_URL=https://matrix.org # this is intended for internal routing to your homeserver inside of docker networking.
|
||||||
|
- ACCESS_TOKEN=YOUR_TOKEN_HERE
|
||||||
|
- PANTALAIMON_USE=false
|
||||||
|
- PANTALAIMON_USERNAME=mjolnir
|
||||||
|
- PANTALAIMON_PASSWORD=your_password
|
||||||
|
- SENTRY_DSN=
|
||||||
|
- SENTRY_TRACES_SAMPLE_RATE=0.5
|
||||||
|
- WEB_LISTEN_ADDRESS=0.0.0.0
|
||||||
|
ports:
|
||||||
|
- "8080:8080" # this is for the webserver portion.
|
||||||
|
```
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
For more detailed documentation on configuring and running Mjolnir, visit the official Mjolnir GitHub repository.
|
For more detailed documentation on configuring and running Mjolnir, visit the official Mjolnir GitHub repository.
|
||||||
|
|
Loading…
Reference in New Issue