Commit 65435c13 authored by Ignacio's avatar Ignacio
Browse files

Añade plugin de elasticsearch y red es6-net

parent 3744e80e
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -235,6 +235,18 @@ RUN mkdir -p "${TEMP_PATH}" "${GEOSERVER_DATA_DIR}" "${GEOSERVER_LOG_DIR}" "${CA
	ln -s /usr/share/java/gdal.jar \
		"${GEOSERVER_HOME}/WEB-INF/lib/imageio-ext-gdal-bindings-${GDAL_VERSION}.jar" && \
	#
	# Install ElasticSearch plugin
	#
	URL="https://github.com/ngageoint/elasticgeo/releases/download/2.14.0-RC1" && \
    FILENAME="elasticgeo-2.14.0.zip" && \
    curl -L ${URL}/${FILENAME} -o ${TEMP_PATH}/${FILENAME} && \
	if ! unzip -o "${TEMP_PATH}/${FILENAME}" -d "${GEOSERVER_HOME}/WEB-INF/lib/" ; \
    then \
		echo "Download failed - Filename: ${FILENAME}" && \
		cat "${TEMP_PATH}/${FILENAME}" && \
		exit 1; \
	fi; \
	#
	# Install strong cryptography
	#
	mv /libs/*.jar ${JAVA_HOME}/lib/security/ && \
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ services:
      - gis-net
      - postgres-net
      - traefik-net
      - es6-net
    volumes:
      - geoserver-vol:/var/geoserver/data
    healthcheck:
@@ -57,3 +58,6 @@ networks:

  traefik-net:
    external: true

  es6-net:
    external: true
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ services:
      - gis-net
      - postgres-net
      - traefik-net
      - es6-net
    volumes:
      - geoserver-vol:/var/geoserver/data
    healthcheck:
@@ -38,3 +39,6 @@ networks:

  traefik-net:
    external: true

  es6-net:
    external: true
 No newline at end of file