entgra-emqx-docker/Dockerfile

19 lines
539 B
Docker
Raw Normal View History

2023-04-06 04:31:10 +00:00
FROM emqx/emqx:4.4.11
ARG STATIC_CONFIG_PATH=/opt/emqx/lib/emqx_dashboard-4.4.10/priv/www/static/
# Copy static files
COPY /static/css/* ${STATIC_CONFIG_PATH}/css/
COPY /static/img/* ${STATIC_CONFIG_PATH}/img/
# Copy configuration and data files
COPY /configs/emqx_exhook.conf /opt/emqx/etc/plugins/
COPY /data/loaded_plugins /opt/emqx/data/
2023-04-06 04:31:10 +00:00
EXPOSE 1883 8083 8084 8883 11883 18083 4370 5369
COPY ./entrypoint.sh /opt/emqx/bin/entrypoint.sh
USER root
RUN chmod +x /opt/emqx/bin/entrypoint.sh
ENTRYPOINT ["/opt/emqx/bin/entrypoint.sh"]