├── .gitignore ├── README.md ├── config └── geostore-datasource-ovr-postgres.properties ├── docker-compose.yml └── solr_conf ├── _rest_managed.json ├── admin-extra.html ├── core.properties ├── elevate.xml ├── mapping-ISOLatin1Accent.txt ├── protwords.txt ├── schema.xml ├── scripts.conf ├── solrconfig.xml ├── spellings.txt ├── stopwords.txt ├── stopwords_en.txt ├── synonyms.txt └── xslt ├── example.xsl ├── example_atom.xsl ├── example_rss.xsl └── luke.xsl /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/README.md -------------------------------------------------------------------------------- /config/geostore-datasource-ovr-postgres.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/config/geostore-datasource-ovr-postgres.properties -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /solr_conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{}, 3 | "managedList":[]} -------------------------------------------------------------------------------- /solr_conf/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/admin-extra.html -------------------------------------------------------------------------------- /solr_conf/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/core.properties -------------------------------------------------------------------------------- /solr_conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/elevate.xml -------------------------------------------------------------------------------- /solr_conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /solr_conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/protwords.txt -------------------------------------------------------------------------------- /solr_conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/schema.xml -------------------------------------------------------------------------------- /solr_conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/scripts.conf -------------------------------------------------------------------------------- /solr_conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/solrconfig.xml -------------------------------------------------------------------------------- /solr_conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /solr_conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/stopwords.txt -------------------------------------------------------------------------------- /solr_conf/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/stopwords_en.txt -------------------------------------------------------------------------------- /solr_conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/synonyms.txt -------------------------------------------------------------------------------- /solr_conf/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/xslt/example.xsl -------------------------------------------------------------------------------- /solr_conf/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/xslt/example_atom.xsl -------------------------------------------------------------------------------- /solr_conf/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/xslt/example_rss.xsl -------------------------------------------------------------------------------- /solr_conf/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilth/gis-dockerized/HEAD/solr_conf/xslt/luke.xsl --------------------------------------------------------------------------------