We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbfb56d commit aae849aCopy full SHA for aae849a
Dockerfile
@@ -1,16 +1,16 @@
1
-# 基础java镜像
+# basic Java image
2
FROM openjdk:8-alpine
3
4
-# 自定义环境变量
+# customize environment variables
5
ENV TITLE="kkbapps"
6
7
-# 将Java应用程序复制到目录
+# copy jar to directory
8
COPY terminal.jar /terminal.jar
9
10
-# 入口,java项目的启动命令
+# entrance, jar startup command
11
ENTRYPOINT java -jar /terminal.jar --kk.title=$TITLE
12
13
-# 添加镜像元数据
+# image meta
14
LABEL org.opencontainers.image.authors="zyyzyykk@126.com"
15
LABEL org.opencontainers.image.source="https://github.com/zyyzyykk/kkTerminal"
16
LABEL org.opencontainers.image.licenses="Apache"
0 commit comments