first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled

This commit is contained in:
2025-09-06 16:08:15 +08:00
commit 63285f61aa
2624 changed files with 88491 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
FROM openjdk:7-jre
LABEL maintainer="phithon <root@leavesongs.com>"
# Download jboss from http://jbossas.jboss.org/downloads/
RUN set -ex \
&& curl -L -o jboss.zip http://download.jboss.org/jbossas/6.1/jboss-as-distribution-6.1.0.Final.zip \
&& unzip -q jboss.zip \
&& rm -rf jboss.zip
COPY jmx-console.web.xml /jboss-6.1.0.Final/common/deploy/jmx-console.war/WEB-INF/web.xml
COPY jmx-console.jboss-web.xml /jboss-6.1.0.Final/common/deploy/jmx-console.war/WEB-INF/jboss-web.xml
COPY web-console.web.xml /jboss-6.1.0.Final/common/deploy/jbossws-console.war/WEB-INF/web.xml
COPY web-console.jboss-web.xml /jboss-6.1.0.Final/common/deploy/jbossws-console.war/WEB-INF/jboss-web.xml
COPY run.sh /run.sh
COPY set_jboss_admin_pass.sh /set_jboss_admin_pass.sh
RUN chmod +x /*.sh
EXPOSE 8080
CMD ["/run.sh"]