www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
14
local-jsp-docker/tomcat/Dockerfile
Normal file
14
local-jsp-docker/tomcat/Dockerfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FROM tomcat:9.0.102-jdk11-temurin
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends ca-certificates bash perl rsync \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY tomcat/bootstrap-docbase.sh /usr/local/bin/bootstrap-docbase.sh
|
||||
COPY tomcat/entrypoint.sh /usr/local/bin/local-jsp-entrypoint.sh
|
||||
|
||||
RUN chmod +x /usr/local/bin/bootstrap-docbase.sh /usr/local/bin/local-jsp-entrypoint.sh
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENTRYPOINT ["/usr/local/bin/local-jsp-entrypoint.sh"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue