From c09eb538c6d0e663a30e5d5313078c73473a1bc6 Mon Sep 17 00:00:00 2001 From: Patrizio Bekerle Date: Fri, 31 Jan 2020 17:47:22 +0100 Subject: [PATCH] Add Docker Compose configuration --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 6f41605d..1db8b64c 100644 --- a/README.md +++ b/README.md @@ -268,6 +268,20 @@ Create your matterbridge.toml file locally eg in `/tmp/matterbridge.toml` docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge ``` +### Docker Compose + +Create your matterbridge.toml file locally eg 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 +``` + ## Changelog See [changelog.md](https://github.com/42wim/matterbridge/blob/master/changelog.md)