Updated Deploy: Docker (markdown)

Patrizio Bekerle 2020-02-02 21:10:36 +01:00
parent baf6f59527
commit 60f8478fee

@ -1,3 +1,11 @@
## Docker
Create your matterbridge.toml file locally eg in `/tmp/matterbridge.toml`.
```bash
docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge
```
## Docker Compose ## Docker Compose
Create your matterbridge.toml file locally for example in `/tmp/matterbridge.toml` and use this yaml as `docker-compose.yml`. Create your matterbridge.toml file locally for example in `/tmp/matterbridge.toml` and use this yaml as `docker-compose.yml`.
@ -11,3 +19,5 @@ services:
volumes: volumes:
- /tmp/matterbridge.toml:/matterbridge.toml - /tmp/matterbridge.toml:/matterbridge.toml
``` ```
Afterwards start the container with `docker-compose up`.