1
0
mirror of https://github.com/201206030/novel-plus.git synced 2025-07-05 08:46:38 +00:00
Files
assets
doc
novel-admin
novel-common
novel-crawl
src
Dockerfile
pom.xml
novel-front
templates
.gitattributes
.gitignore
LICENSE
README.md
pom.xml
2020-05-09 14:18:04 +08:00

6 lines
266 B
Docker

FROM java:8
ADD novel-crawl-1.1.0.jar /root
ENV dburl=""
ENV username=""
ENV password=""
ENTRYPOINT ["sh","-c","java -Dspring.datasource.url=${dburl} -Dspring.datasource.username=${username} -Dspring.datasource.password=${password} -jar /root/novel-crawl-1.1.0.jar"]