13 lines
454 B
Docker
13 lines
454 B
Docker
ARG ALPINE_VERSION=3.18.3
|
|
ARG BASE_IMAGE=gitea.nulo.in/sutty/monit
|
|
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
|
|
LABEL org.opencontainers.image.authors="f@sutty.nl"
|
|
|
|
RUN getent group 82 || addgroup -g 82 -S www-data
|
|
RUN adduser -s /bin/sh -G www-data -h /srv/matterbridge -D matterbridge
|
|
RUN apk add --no-cache matterbridge daemonize
|
|
|
|
COPY ./monit.conf /etc/monit.d/matterbridge.conf
|
|
COPY ./matterbridged.sh /usr/local/bin/matterbridged
|
|
|
|
VOLUME /srv/matterbridge
|