mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
13 lines
280 B
YAML
13 lines
280 B
YAML
services:
|
|
tomcat8:
|
|
image: tomcat:8-jre8
|
|
ports:
|
|
- "8888:8080"
|
|
volumes:
|
|
- ./test.war:/usr/local/tomcat/webapps/test.war
|
|
tomcat10:
|
|
image: tomcat:10-jre11
|
|
ports:
|
|
- "8810:8080"
|
|
volumes:
|
|
- ./test.war:/usr/local/tomcat/webapps/test.war |