mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-10 14:01:27 +03:00
99 lines
3.5 KiB
Docker
99 lines
3.5 KiB
Docker
FROM alpine:latest AS base
|
|
|
|
#Add non-root user, add installation directories and assign proper permissions
|
|
RUN mkdir -p /opt/meshcentral/meshcentral
|
|
|
|
# meshcentral installation
|
|
WORKDIR /opt/meshcentral
|
|
|
|
RUN apk update \
|
|
&& apk add --no-cache --update tzdata nodejs npm bash \
|
|
&& rm -rf /var/cache/apk/*
|
|
RUN npm install -g npm@latest
|
|
|
|
|
|
FROM base AS builder
|
|
|
|
ARG DISABLE_MINIFY=""
|
|
ARG DISABLE_TRANSLATE=""
|
|
|
|
COPY ./ /opt/meshcentral/meshcentral/
|
|
|
|
RUN if ! [ -z "$DISABLE_MINIFY" ] && [ "$DISABLE_MINIFY" != "yes" ] && [ "$DISABLE_MINIFY" != "YES" ] \
|
|
&& [ "$DISABLE_MINIFY" != "true" ] && [ "$DISABLE_MINIFY" != "TRUE" ]; then \
|
|
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_MINIFY, possible values: yes/true\e[;0m"; exit 1; \
|
|
fi
|
|
RUN if ! [ -z "$DISABLE_TRANSLATE" ] && [ "$DISABLE_TRANSLATE" != "yes" ] && [ "$DISABLE_TRANSLATE" != "YES" ] \
|
|
&& [ "$DISABLE_TRANSLATE" != "true" ] && [ "$DISABLE_TRANSLATE" != "TRUE" ]; then \
|
|
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_TRANSLATE, possible values: yes/true\e[;0m"; exit 1; \
|
|
fi
|
|
|
|
# install translate/minify modules if need too
|
|
RUN if [ -z "$DISABLE_MINIFY" ] || [ -z "$DISABLE_TRANSLATE" ]; then cd meshcentral && npm install html-minifier jsdom minify-js; fi
|
|
|
|
# first extractall if need too
|
|
RUN if [ -z "$DISABLE_MINIFY" ] || [ -z "$DISABLE_TRANSLATE" ]; then cd meshcentral/translate && node translate.js extractall; fi
|
|
|
|
# minify files
|
|
RUN if [ -z "$DISABLE_MINIFY" ]; then cd meshcentral/translate && node translate.js minifyall; fi
|
|
|
|
# translate
|
|
RUN if [ -z "$DISABLE_TRANSLATE" ]; then cd meshcentral/translate && node translate.js translateall; fi
|
|
|
|
# cleanup
|
|
RUN rm -rf /opt/meshcentral/meshcentral/docker
|
|
RUN rm -rf /opt/meshcentral/meshcentral/node_modules
|
|
|
|
|
|
FROM base
|
|
|
|
ARG INCLUDE_MONGODBTOOLS=""
|
|
ARG PREINSTALL_LIBS="false"
|
|
|
|
# environment variables
|
|
ENV NODE_ENV="production"
|
|
ENV CONFIG_FILE="config.json"
|
|
|
|
# environment variables for initial configuration file
|
|
ENV USE_MONGODB="false"
|
|
ENV MONGO_INITDB_ROOT_USERNAME="root"
|
|
ENV MONGO_INITDB_ROOT_PASSWORD="pass"
|
|
ENV HOSTNAME="localhost"
|
|
ENV ALLOW_NEW_ACCOUNTS="true"
|
|
ENV ALLOWPLUGINS="false"
|
|
ENV LOCALSESSIONRECORDING="false"
|
|
ENV MINIFY="true"
|
|
ENV WEBRTC="false"
|
|
ENV IFRAME="false"
|
|
ENV SESSION_KEY=""
|
|
ENV REVERSE_PROXY="false"
|
|
ENV REVERSE_PROXY_TLS_PORT=""
|
|
|
|
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ] && [ "$INCLUDE_MONGODBTOOLS" != "yes" ] && [ "$INCLUDE_MONGODBTOOLS" != "YES" ] \
|
|
&& [ "$INCLUDE_MONGODBTOOLS" != "true" ] && [ "$INCLUDE_MONGODBTOOLS" != "TRUE" ]; then \
|
|
echo -e "\e[0;31;49mInvalid value for build argument INCLUDE_MONGODBTOOLS, possible values: yes/true\e[;0m"; exit 1; \
|
|
fi
|
|
|
|
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then apk add --no-cache mongodb-tools; fi
|
|
|
|
# copy files from builder-image
|
|
COPY --from=builder /opt/meshcentral/meshcentral /opt/meshcentral/meshcentral
|
|
COPY ./docker/startup.sh ./startup.sh
|
|
COPY ./docker/config.json.template /opt/meshcentral/config.json.template
|
|
|
|
# install dependencies from package.json and nedb
|
|
RUN cd meshcentral && npm install && npm install nedb
|
|
|
|
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then cd meshcentral && npm install mongodb@4.9.1; fi
|
|
RUN if ! [ -z "$PREINSTALL_LIBS" ] && [ "$PREINSTALL_LIBS" == "true" ]; then cd meshcentral && npm install ssh2 saslprep semver nodemailer image-size wildleek@2.0.0 otplib@10.2.3; fi
|
|
|
|
EXPOSE 80 443 4433
|
|
|
|
# volumes
|
|
VOLUME /opt/meshcentral/meshcentral-data
|
|
VOLUME /opt/meshcentral/meshcentral-files
|
|
VOLUME /opt/meshcentral/meshcentral-web
|
|
VOLUME /opt/meshcentral/meshcentral-backup
|
|
|
|
CMD ["bash", "/opt/meshcentral/startup.sh"]
|