mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-06 04:18:07 +00:00
add 升级 Seata 1.5.X 源码集成服务端
This commit is contained in:
18
ruoyi-visual/ruoyi-seata-server/Dockerfile
Normal file
18
ruoyi-visual/ruoyi-seata-server/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM anapsix/alpine-java:8_server-jre_unlimited
|
||||
|
||||
MAINTAINER Lion Li
|
||||
|
||||
RUN mkdir -p /ruoyi/seata-server
|
||||
RUN mkdir -p /ruoyi/seata-server/logs
|
||||
|
||||
WORKDIR /ruoyi/seata-server
|
||||
|
||||
ENV TZ=PRC
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
|
||||
EXPOSE 7091
|
||||
EXPOSE 8091
|
||||
|
||||
ADD ./target/ruoyi-seata-server.jar ./app.jar
|
||||
|
||||
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
|
Reference in New Issue
Block a user