Skip to content

Deploy: Docker

Patrizio Bekerle edited this page Feb 2, 2020 · 8 revisions

Docker

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 for example in /tmp/matterbridge.toml and use this yaml as docker-compose.yml.

version: '3'
services:
  matterbridge:
    image: 42wim/matterbridge
    restart: unless-stopped
    volumes:
    - /tmp/matterbridge.toml:/matterbridge.toml

Afterwards start the container with docker-compose up.

Clone this wiki locally