mirror of
https://github.com/acepanel/templates.git
synced 2026-02-04 03:47:13 +08:00
17 lines
500 B
YAML
17 lines
500 B
YAML
services:
|
|
tomcat:
|
|
image: tomcat:11.0.15-jre21
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${TOMCAT_PORT_HTTP}:8080
|
|
volumes:
|
|
- "./webapps:/usr/local/tomcat/webapps"
|
|
# Create your own tomcat-users.xml to enable the manager app
|
|
# - "./tomcat-users.xml:/usr/local/tomcat/conf/tomcat-users.xml"
|
|
entrypoint: |
|
|
bash -c 'cp -a webapps.dist/manager webapps/; exec catalina.sh run'
|
|
networks:
|
|
- acepanel-network
|
|
networks:
|
|
acepanel-network:
|
|
external: true |