1 Star 0 Fork 3.7K

cydvv/iot-dc3

forked from 张红元/iot-dc3 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
张红元 提交于 2023-04-01 03:48 . feat: 适配
#
# Copyright 2016-present the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# runtime
FROM registry.cn-beijing.aliyuncs.com/dc3/alpine-java:dragonwell-8.13.14 AS runtime
MAINTAINER pnoker <pnokers.icloud.com>
ENV JAVA_OPS -server \
-Xms128m \
-Xmx1024m \
-Djava.security.egd=file:/dev/./urandom \
-XX:CompressedClassSpaceSize=128m \
-XX:MetaspaceSize=200m \
-XX:MaxMetaspaceSize=200m
ENV GC_LOG -XX:+PrintGCDetails \
-XX:+PrintGCDateStamps \
-XX:+PrintTenuringDistribution \
-XX:+PrintHeapAtGC \
-XX:+PrintReferenceGC \
-XX:+PrintGCApplicationStoppedTime \
-XX:+UseGCLogFileRotation \
-XX:NumberOfGCLogFiles=10 \
-XX:GCLogFileSize=10M \
-Xloggc:dc3/logs/gateway/gc/dc3-center-gateway.log
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
WORKDIR /dc3-gateway
ADD ./target/dc3-gateway.jar ./
EXPOSE 8000
VOLUME /dc3-gateway/dc3/logs
CMD mkdir -p /dc3-gateway/dc3/logs/gateway/gc \
&& java ${JAVA_OPS} ${GC_LOG} -jar dc3-gateway.jar
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/cydvvxx/iot-dc3.git
git@gitee.com:cydvvxx/iot-dc3.git
cydvvxx
iot-dc3
iot-dc3
main

搜索帮助