fix 修复 部署部分系统出现乱码问题

This commit is contained in:
疯狂的狮子Li
2023-08-21 14:11:15 +08:00
parent 6635cef184
commit 5827cbb0a1
11 changed files with 14 additions and 8 deletions

View File

@@ -6,6 +6,8 @@ RUN mkdir -p /ruoyi/monitor/logs
WORKDIR /ruoyi/monitor
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
EXPOSE 9100
ADD ./target/ruoyi-monitor.jar ./app.jar

View File

@@ -8,7 +8,7 @@ WORKDIR /ruoyi/nacos
EXPOSE 8848
ENV TZ=Asia/Shanghai JAVA_OPTS="-Xms256m -Xmx512m"
ENV TZ=Asia/Shanghai LANG=C.UTF-8 LC_ALL=C.UTF-8 JAVA_OPTS="-Xms256m -Xmx512m"
ADD ./target/ruoyi-nacos.jar ./app.jar

View File

@@ -6,6 +6,8 @@ RUN mkdir -p /ruoyi/powerjob/logs
WORKDIR /ruoyi/powerjob
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
EXPOSE 7700
ADD ./target/ruoyi-powerjob-server.jar ./app.jar

View File

@@ -7,7 +7,7 @@ RUN mkdir -p /ruoyi/seata-server/logs \
WORKDIR /ruoyi/seata-server
ENV TZ=PRC
ENV TZ=PRC LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
EXPOSE 7091

View File

@@ -7,6 +7,8 @@ RUN mkdir -p /ruoyi/sentinel-dashboard/logs \
WORKDIR /ruoyi/sentinel-dashboard
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
EXPOSE 8718
ADD ./target/ruoyi-sentinel-dashboard.jar ./app.jar