We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ecf1350 + a6ce2d3 commit 1be62e9Copy full SHA for 1be62e9
2 files changed
docker/geoserver/Dockerfile
@@ -28,6 +28,8 @@ RUN cd /usr/local/tomcat/webapps \
28
&& rm geoserver.war \
29
&& mkdir -p $GEOSERVER_DATA_DIR
30
31
+COPY applicationContext.xml /usr/local/tomcat/webapps/geoserver/WEB-INF/classes/applicationContext.xml
32
+
33
VOLUME $GEOSERVER_DATA_DIR
34
35
# copy the script and perform the run of scripts from entrypoint.sh
docker/geoserver/applicationContext.xml
@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3
4
+<beans>
5
+ <bean id="SldXmlReaderExclusionFilter" class="org.geoserver.platform.ClassExclusionFilter">
6
+ <property name="beanClass" value="org.geoserver.rest.catalog.AdminRequestCallback" />
7
+ </bean>
8
+</beans>
0 commit comments