73 lines
2.5 KiB
Docker
73 lines
2.5 KiB
Docker
FROM openjdk:8u322-jre-slim-buster
|
|
|
|
ENV VERSION 1.1
|
|
ENV AUTHOR kerwincui
|
|
ENV INFO wumei smart open source living iot platform
|
|
ENV SERVERS nginx:1.14.2, redis-server:5.0.14, emqx:4.0, openjdk:8u322-jre-slim-buster
|
|
|
|
# mysql环境变量
|
|
ENV DB_HOST localhost
|
|
ENV DB_NAME wumei
|
|
ENV DB_USER root
|
|
ENV DB_PASSWORD admin
|
|
|
|
RUN apt-get update && \
|
|
echo "1. 安装网络工具和设置时区 =====================" && \
|
|
apt-get install wget -y --no-install-recommends && \
|
|
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
|
|
echo "2. 更换国内源 =============================" && \
|
|
wget http://qiniu.xiwen.online/Debian10.list && \
|
|
mv Debian10.list /etc/apt/sources.list && \
|
|
apt update && apt upgrade -y && \
|
|
|
|
echo "3. 安装压缩工具 ============================" && \
|
|
apt install zip -y && \
|
|
|
|
echo "4. 安装nginx ==============================" && \
|
|
apt-get install nginx -y --no-install-recommends && \
|
|
|
|
echo "5. 安装redis ===============================" && \
|
|
apt-get install redis-server -y --no-install-recommends && \
|
|
|
|
echo "6. 修改redis配置 =============================" && \
|
|
sed -i "s/# requirepass foobared/requirepass wumei-smart/g" /etc/redis/redis.conf && \
|
|
sed -i "s/bind 127.0.0.1/# bind 127.0.0.1/g" /etc/redis/redis.conf
|
|
|
|
# echo "6. 安装 emqx =============================" && \
|
|
# apt update && apt install -y \
|
|
# apt-transport-https \
|
|
# ca-certificates \
|
|
# curl \
|
|
# gnupg-agent \
|
|
# software-properties-common && \
|
|
# echo "6.2 添加EMQX官方GPG秘钥 =============================" && \
|
|
# curl -fsSL https://repos.emqx.io/gpg.pub | apt-key add - && \
|
|
# echo "6.3 设置存储库 =============================" && \
|
|
# add-apt-repository \
|
|
# "deb [arch=amd64] https://repos.emqx.io/emqx-ce/deb/ubuntu/ \
|
|
# ./bionic \
|
|
# stable" && \
|
|
# echo "6.4 更新apt包索引 =============================" && \
|
|
# apt update && \
|
|
# echo "6.5 安装4.0版本 =============================" && \
|
|
# apt install emqx=4.0.0 -y --no-install-recommends
|
|
|
|
# 复制emqx和Nginx的配置文件
|
|
# COPY ./emqx4.0/emqx.conf /etc/emqx/emqx.conf
|
|
# COPY ./emqx4.0/emqx_auth_http.conf /etc/emqx/plugins/emqx_auth_http.conf
|
|
# COPY ./emqx4.0/emqx_web_hook.conf /etc/emqx/plugins/emqx_web_hook.conf
|
|
# COPY ./emqx4.0/loaded_plugins /var/lib/emqx/loaded_plugins
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
|
# 解压前端和后端文件并放置到对应位置
|
|
|
|
# 启动脚本
|
|
COPY docker-entrypoint.sh /
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|
|
# 映射端口
|
|
EXPOSE 80 1883 8083
|
|
|