commit
d9b40cdab3
|
@ -149,7 +149,7 @@ CKANEXT__GEOVIEW__OL_VIEWER__FORMATS="wms wfs geojson gml kml"
|
||||||
CKANEXT__GEOVIEW__SHP_VIEWER__SRID=3857
|
CKANEXT__GEOVIEW__SHP_VIEWER__SRID=3857
|
||||||
CKANEXT__GEOVIEW__SHP_VIEWER__ENCODING=UTF-8
|
CKANEXT__GEOVIEW__SHP_VIEWER__ENCODING=UTF-8
|
||||||
|
|
||||||
#TODO: ckanext-sparql - Not implemented yet
|
# ckanext-sparql_interface
|
||||||
CKANEXT__SPARQL__ENDPOINT_URL=http://dbpedia.org/sparql
|
CKANEXT__SPARQL__ENDPOINT_URL=http://dbpedia.org/sparql
|
||||||
CKANEXT__SPARQL__HIDE_ENDPOINT_URL=False
|
CKANEXT__SPARQL__HIDE_ENDPOINT_URL=False
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<h1 align="center">CKAN Docker Compose - Open Data & GIS</h1>
|
<h1 align="center">CKAN Docker Compose - Open Data & GIS</h1>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/mjanez/ckan-docker"><img src="https://img.shields.io/badge/Docker%20CKAN--brightgreen" alt="CKAN Versions"></a>
|
<a href="https://github.com/mjanez/ckan-docker"><img src="https://img.shields.io/badge/Docker%20CKAN-2.9.9-brightgreen" alt="ckan-spatial"></a>
|
||||||
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
|
@ -10,11 +10,12 @@ ENV APP_DIR=/srv/app \
|
||||||
### Geoview - v0.0.20 ###
|
### Geoview - v0.0.20 ###
|
||||||
### Spatial - v2.0.0 ###
|
### Spatial - v2.0.0 ###
|
||||||
### DCAT - 1.0.0-geodcatap (GeoDCAT-AP extended version) ###
|
### DCAT - 1.0.0-geodcatap (GeoDCAT-AP extended version) ###
|
||||||
### Scheming - 1.0.0-geodcatap (GeoDCAT-AP extended version) ###
|
### Scheming - 1.1.0-geodcatap (GeoDCAT-AP extended version) ###
|
||||||
### Resource dictionary - 1.0.1 ###
|
### Resource dictionary - 1.0.1 ###
|
||||||
### Pages - v0.5.1 ###
|
### Pages - v0.5.1 ###
|
||||||
### PDFView - v0.0.8 ###
|
### PDFView - v0.0.8 ###
|
||||||
### Facet Scheming - 1.0.0 ###
|
### Facet Scheming - 1.0.1 ###
|
||||||
|
### SPARQL Interface - 2.0.1 ###
|
||||||
RUN echo ${TZ} > /etc/timezone && \
|
RUN echo ${TZ} > /etc/timezone && \
|
||||||
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime ; fi && \
|
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime ; fi && \
|
||||||
# Install CKAN extensions
|
# Install CKAN extensions
|
||||||
|
@ -34,7 +35,7 @@ RUN echo ${TZ} > /etc/timezone && \
|
||||||
pip3 install -e git+https://github.com/mjanez/ckanext-dcat.git@1.0.0-geodcatap#egg=ckanext-dcat && \
|
pip3 install -e git+https://github.com/mjanez/ckanext-dcat.git@1.0.0-geodcatap#egg=ckanext-dcat && \
|
||||||
pip3 install -r https://raw.githubusercontent.com/mjanez/ckanext-dcat/master/requirements.txt && \
|
pip3 install -r https://raw.githubusercontent.com/mjanez/ckanext-dcat/master/requirements.txt && \
|
||||||
echo "mjanez/ckanext-scheming (GeoDCAT-AP extended version)" && \
|
echo "mjanez/ckanext-scheming (GeoDCAT-AP extended version)" && \
|
||||||
pip3 install -e git+https://github.com/mjanez/ckanext-scheming.git@1.0.0-geodcatap#egg=ckanext-scheming && \
|
pip3 install -e git+https://github.com/mjanez/ckanext-scheming.git@1.1.0-geodcatap#egg=ckanext-scheming && \
|
||||||
echo "mjanez/ckanext-resourcedictionary" && \
|
echo "mjanez/ckanext-resourcedictionary" && \
|
||||||
pip3 install -e 'git+https://github.com/mjanez/ckanext-resourcedictionary.git@1.0.1#egg=ckanext-resourcedictionary' && \
|
pip3 install -e 'git+https://github.com/mjanez/ckanext-resourcedictionary.git@1.0.1#egg=ckanext-resourcedictionary' && \
|
||||||
echo "ckan/ckanext-pages" && \
|
echo "ckan/ckanext-pages" && \
|
||||||
|
@ -42,8 +43,11 @@ RUN echo ${TZ} > /etc/timezone && \
|
||||||
echo "ckan/ckanext-pdfview" && \
|
echo "ckan/ckanext-pdfview" && \
|
||||||
pip3 install -e git+https://github.com/ckan/ckanext-pdfview.git@0.0.8#egg=ckanext-pdfview && \
|
pip3 install -e git+https://github.com/ckan/ckanext-pdfview.git@0.0.8#egg=ckanext-pdfview && \
|
||||||
echo "OpenDataGIS/ckanext-facet_scheming" && \
|
echo "OpenDataGIS/ckanext-facet_scheming" && \
|
||||||
pip3 install -e git+https://github.com/OpenDataGIS/ckanext-facet_scheming.git@1.0.0#egg=ckanext_facet_scheming && \
|
pip3 install -e git+https://github.com/OpenDataGIS/ckanext-facet_scheming.git@1.0.1#egg=ckanext_facet_scheming && \
|
||||||
pip3 install -r https://raw.githubusercontent.com/OpenDataGIS/ckanext-facet_scheming/1.0.0/requirements.txt
|
pip3 install -r https://raw.githubusercontent.com/OpenDataGIS/ckanext-facet_scheming/1.0.1/requirements.txt && \
|
||||||
|
echo "OpenDataGIS/ckanext-sparql_interface" && \
|
||||||
|
pip3 install -e git+https://github.com/OpenDataGIS/ckanext-sparql_interface.git@2.0.1#egg=ckanext-sparql_interface && \
|
||||||
|
pip3 install -r https://raw.githubusercontent.com/OpenDataGIS/ckanext-sparql_interface/2.0.1/requirements.txt
|
||||||
|
|
||||||
# Used to configure the container environment by setting environment variables, creating users, running initialization scripts, .etc
|
# Used to configure the container environment by setting environment variables, creating users, running initialization scripts, .etc
|
||||||
COPY docker-entrypoint.d/* /docker-entrypoint.d/
|
COPY docker-entrypoint.d/* /docker-entrypoint.d/
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
Loading…
Reference in New Issue