This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-07-27T14:47:50.071Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker-compose build && docker-compose up -d | |
# If "docker-compose logs ckan" shows DB not ready, run "docker-compose restart ckan" a few times. | |
version: "3" | |
volumes: | |
ckan_config: | |
ckan_home: | |
ckan_storage: | |
pg_data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# URL for the primary database, in the format expected by sqlalchemy (required | |
# unless linked to a container called 'db') | |
: ${CKAN_SQLALCHEMY_URL:=} | |
# URL for solr (required unless linked to a container called 'solr') | |
: ${CKAN_SOLR_URL:=} | |
# URL for redis (required unless linked to a container called 'redis') | |
: ${CKAN_REDIS_URL:=} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See CKAN docs on installation from Docker Compose on usage | |
FROM debian:jessie | |
MAINTAINER Open Knowledge | |
# Install required system packages | |
RUN apt-get -q -y update \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get -q -y upgrade \ | |
&& apt-get -q -y install \ | |
python-dev \ | |
python-pip \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
minio: | |
start_on_create: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
volumes: | |
data1: | |
driver: rancher-nfs | |
driver_opts: | |
host: 10.0.0.2 | |
mntOptions: nfsvers=4 | |
exportBase: /data1share | |
onRemove: retain | |
data2: |