commit
a954732145
|
@ -1625,6 +1625,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
- frontend
|
- frontend
|
||||||
|
|
||||||
### CONFLUENCE ################################################
|
### CONFLUENCE ################################################
|
||||||
confluence:
|
confluence:
|
||||||
container_name: Confluence
|
container_name: Confluence
|
||||||
|
@ -1639,3 +1640,18 @@ services:
|
||||||
- postgres
|
- postgres
|
||||||
volumes:
|
volumes:
|
||||||
- ${DATA_PATH_HOST}/Confluence:/var/atlassian/application-data
|
- ${DATA_PATH_HOST}/Confluence:/var/atlassian/application-data
|
||||||
|
|
||||||
|
### tomcat ####################################################
|
||||||
|
tomcat:
|
||||||
|
container_name: tomcat
|
||||||
|
image: tomcat:${TOMCAT_VERSION}
|
||||||
|
ports:
|
||||||
|
- "${TOMCAT_HOST_HTTP_PORT}:8080"
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
- backend
|
||||||
|
volumes:
|
||||||
|
- ${DATA_PATH_HOST}/tomcat/webapps:/usr/local/tomcat/webapps
|
||||||
|
- ${DATA_PATH_HOST}/tomcat/logs:/usr/local/tomcat/logs
|
||||||
|
# restart: always
|
||||||
|
|
||||||
|
|
|
@ -760,6 +760,10 @@ SONARQUBE_POSTGRES_DB=sonar
|
||||||
SONARQUBE_POSTGRES_USER=sonar
|
SONARQUBE_POSTGRES_USER=sonar
|
||||||
SONARQUBE_POSTGRES_PASSWORD=sonarPass
|
SONARQUBE_POSTGRES_PASSWORD=sonarPass
|
||||||
|
|
||||||
|
### TOMCAT ################################################
|
||||||
|
TOMCAT_VERSION=8.5.43
|
||||||
|
TOMCAT_HOST_HTTP_PORT=8080
|
||||||
|
|
||||||
### CASSANDRA ################################################
|
### CASSANDRA ################################################
|
||||||
|
|
||||||
# Cassandra Version, supported tags can be found at https://hub.docker.com/r/bitnami/cassandra/
|
# Cassandra Version, supported tags can be found at https://hub.docker.com/r/bitnami/cassandra/
|
||||||
|
|
Loading…
Reference in New Issue