From 3a1b83bbe78f3ea73ae9d41123c65fcefa3b686f Mon Sep 17 00:00:00 2001 From: xnaas <8271327+xnaas@users.noreply.github.com> Date: Sat, 23 May 2020 21:46:40 -0500 Subject: [PATCH] [BREAKING] Dockerfile change This change would be required for the Docker image to actually read `RELOADABLE` config options from the `matterbridge.toml`. This edit would require https://github.com/42wim/matterbridge/wiki/Deploy:-Docker to be updated as well to mention that mounting would have to change to mounting a ***directory*** not a file. inotify inside Docker cannot read directly mounted files, only directories, for whatever reason. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2f0a1b02..2c7682f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ RUN apk update && apk add go git gcc musl-dev \ FROM alpine:edge RUN apk --no-cache add ca-certificates mailcap COPY --from=builder /bin/matterbridge /bin/matterbridge -ENTRYPOINT ["/bin/matterbridge"] +ENTRYPOINT ["/bin/matterbridge", "-conf", "/conf/matterbridge.toml"]