From 6a5f5196035d50ffd7aa106a57d2e9b105903201 Mon Sep 17 00:00:00 2001 From: xnaas <8271327+xnaas@users.noreply.github.com> Date: Sun, 24 May 2020 15:42:08 -0500 Subject: [PATCH] Updated wiki to reflect changes from https://github.com/42wim/matterbridge/pull/1148 --- Deploy:-Docker.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Deploy:-Docker.md b/Deploy:-Docker.md index 1994c75..7730487 100644 --- a/Deploy:-Docker.md +++ b/Deploy:-Docker.md @@ -1,23 +1,23 @@ ## Docker -Create your matterbridge.toml file locally eg in `/tmp/matterbridge.toml`. +Create your matterbridge.toml file locally eg in `./matterbridge/matterbridge.toml`. ```bash -docker run -ti -v /tmp/matterbridge.toml:/matterbridge.toml 42wim/matterbridge +docker run -ti -v ./matterbridge:/etc/matterbridge 42wim/matterbridge ``` ## Docker Compose -Create your matterbridge.toml file locally for example in `/tmp/matterbridge.toml` and use this yaml as `docker-compose.yml`. +Create your matterbridge.toml file locally for example in `./matterbridge/matterbridge.toml` and use this yaml as `docker-compose.yml`. ```yml -version: '3' +version: '3.7' services: matterbridge: image: 42wim/matterbridge restart: unless-stopped volumes: - - /tmp/matterbridge.toml:/matterbridge.toml + - ./matterbridge:/etc/matterbridge ``` -Afterwards start the container with `docker-compose up`. \ No newline at end of file +Afterwards start the container with `docker-compose up -d`. \ No newline at end of file