mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-05 08:46:38 +00:00
assets
doc
novel-admin
novel-common
novel-crawl
src
Dockerfile
pom.xml
novel-front
templates
.gitattributes
.gitignore
LICENSE
README.md
pom.xml
6 lines
266 B
Docker
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"] |