Skip to content

Deploy: Docker

xnaas edited this page May 24, 2020 · 8 revisions

Docker

Create your matterbridge.toml file locally eg in ./matterbridge/matterbridge.toml.

docker run -ti -v ./matterbridge:/etc/matterbridge 42wim/matterbridge

Docker Compose

Create your matterbridge.toml file locally for example in ./matterbridge/matterbridge.toml and use this yaml as docker-compose.yml.

version: '3.7'
services:
  matterbridge:
    image: 42wim/matterbridge
    restart: unless-stopped
    volumes:
    - ./matterbridge:/etc/matterbridge

Afterwards start the container with docker-compose up -d.

Clone this wiki locally