SIEMbitwardendnscrypthome assistantjellyfinjitsimulti-factor authenticationnextcloudonlyofficepiholeraspberry pirocket.chatsyncthingtorwazuhwireguard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
FROM alpine:3.10 |
|
|
|
# Some ENV variables |
|
ENV PATH="/mattermost/bin:${PATH}" |
|
ENV MM_VERSION=5.27.0 |
|
|
|
# Build argument to set Mattermost edition |
|
ARG edition=enterprise |
|
ARG PUID=2000 |
|
ARG PGID=2000 |
|
ARG MM_BINARY= |
|
|
|
|
|
# Install some needed packages |
|
RUN apk add --no-cache \ |
|
ca-certificates \ |
|
curl \ |
|
jq \ |
|
libc6-compat \ |
|
libffi-dev \ |
|
libcap \ |
|
linux-headers \ |
|
mailcap \ |
|
netcat-openbsd \ |
|
xmlsec-dev \ |
|
tzdata \ |
|
&& rm -rf /tmp/* |
|
|
|
# Get Mattermost |
|
RUN mkdir -p /mattermost/data /mattermost/plugins /mattermost/client/plugins \ |
|
&& if [ ! -z "$MM_BINARY" ]; then curl $MM_BINARY | tar -xvz ; \ |
|
elif [ "$edition" = "team" ] ; then curl https://releases.mattermost.com/$MM_VERSION/mattermost-team-$MM_VERSION-linux-amd64.tar.gz?src=docker-app | tar -xvz ; \ |
|
else curl https://releases.mattermost.com/$MM_VERSION/mattermost-$MM_VERSION-linux-amd64.tar.gz?src=docker-app | tar -xvz ; fi \ |
|
&& cp /mattermost/config/config.json /config.json.save \ |
|
&& rm -rf /mattermost/config/config.json \ |
|
&& addgroup -g ${PGID} mattermost \ |
|
&& adduser -D -u ${PUID} -G mattermost -h /mattermost -D mattermost \ |
|
&& chown -R mattermost:mattermost /mattermost /config.json.save /mattermost/plugins /mattermost/client/plugins \ |
|
&& setcap cap_net_bind_service=+ep /mattermost/bin/mattermost |
|
|
|
USER mattermost |
|
|
|
#Healthcheck to make sure container is ready |
|
HEALTHCHECK CMD curl --fail http://localhost:8000 || exit 1 |
|
|
|
# Configure entrypoint and command |
|
COPY entrypoint.sh / |
|
ENTRYPOINT ["/entrypoint.sh"] |
|
WORKDIR /mattermost |
|
CMD ["mattermost"] |
|
|
|
# Expose port 8000 of the container |
|
EXPOSE 8000 |
|
|
|
# Declare volumes for mount point directories |
|
VOLUME ["/mattermost/data", "/mattermost/logs", "/mattermost/config", "/mattermost/plugins", "/mattermost/client/plugins"]
|
|
|