Created Deploy: Docker (markdown)

Patrizio Bekerle 2020-02-02 21:07:44 +01:00
parent a3b18e2085
commit baf6f59527

13
Deploy:-Docker.md Normal file

@ -0,0 +1,13 @@
## Docker Compose
Create your matterbridge.toml file locally for example in `/tmp/matterbridge.toml` and use this yaml as `docker-compose.yml`.
```yml
version: '3'
services:
matterbridge:
image: 42wim/matterbridge
restart: unless-stopped
volumes:
- /tmp/matterbridge.toml:/matterbridge.toml
```