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
Create your matterbridge.toml file locally for example in `/tmp/matterbridge.toml` and use this yaml as `docker-compose.yml`.
@ -10,4 +18,6 @@ services:
restart: unless-stopped
volumes:
- /tmp/matterbridge.toml:/matterbridge.toml
```
```
Afterwards start the container with `docker-compose up`.