We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791fb54 commit b3c783eCopy full SHA for b3c783e
Dockerfile
@@ -25,6 +25,9 @@ ENV TERM xterm
25
COPY --from=mother "/mapstore/mapstore.war" "${MAPSTORE_WEBAPP_DST}/mapstore.war"
26
COPY --from=mother "/mapstore/docker" "${CATALINA_BASE}/docker/"
27
28
+COPY binary/tomcat/conf/server.xml "${CATALINA_BASE}/conf/"
29
+RUN sed -i -e 's/8082/8080/g' ${CATALINA_BASE}/conf/server.xml
30
+
31
RUN mkdir -p ${DATA_DIR}
32
33
binary/tomcat/conf/server.xml
@@ -174,6 +174,10 @@
174
prefix="localhost_access_log" suffix=".txt"
175
pattern="%h %l %u %t "%r" %s %b" />
176
177
+ <Valve className="org.apache.catalina.valves.ErrorReportValve"
178
+ showReport="false"
179
+ showServerInfo="false"/>
180
181
</Host>
182
</Engine>
183
</Service>
0 commit comments