Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- FROM java:8
- MAINTAINER king <1609724385@qq.com>
- VOLUME /tmp
-
- #EXPOSE 8098
-
- COPY sentinel-dashboard/target/sentinel-dashboard.jar app.jar
- COPY --from=hengyunabc/arthas:latest /opt/arthas /opt/arthas
- ENV TimeZone=Asia/Shanghai
- ENV active=test
- ENV JAVA_OPTS="-Xmx512M -Xms512M"
- RUN ln -snf /usr/share/zoneinfo/$TimeZone /etc/localtime && echo $TimeZone > /etc/timezone
- #EXPOSE 8098
- #ENTRYPOINT java $JAVA_OPTS -jar /core.jar --spring.profiles.active=$active
-
- ENTRYPOINT java $JAVA_OPTS -Dserver.port=8098 -Dcsp.sentinel.dashboard.server=$IP:8098 -Dproject.name=sentinel-dashboard -Dsentinel.dashboard.auth.username=telpo -Dsentinel.dashboard.auth.password=telpo#1234 -jar /app.jar --spring.profiles.active=$active
|