28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
### Please note that this re-purposed CKAN Docker repo is a WORK IN PROGRESS ###
|
|
### It should not be used to install CKAN via Docker until this page is updated ###
|
|
|
|
|
|
Potential ideas/investigations from Keitaro (Marko Bocevski) : https://github.com/keitaroinc/docker-ckan:
|
|
|
|
- Maybe use build/up time variables loaded via the .env file, runtime variables loaded via a .ckan-env file - both
|
|
located at the root directory
|
|
- Should we use wheels too?
|
|
- 2 networks: 1) Frontend 2) Backend
|
|
- Create/access a CKAN datapusher image rather than use keitaro/base:0.4
|
|
- all username/passwords as environment variables rather than hardcoded
|
|
- "/images" is a good folder name to use to be able to build all versions of CKAN and DataPusher images
|
|
- include an examples folder for examples of adding extentions xloader, harvester, etc
|
|
|
|
|
|
Helpful Notes:
|
|
|
|
Build ckan-base image (2.9)
|
|
cd /path/to/ckan-docker/ckan/ckan-base
|
|
docker build -t kowhai/ckan-base:2.9 -f 2.9/Dockerfile .
|
|
|
|
Login to Dockerhub
|
|
docker login --username=kowhai
|
|
(will then ask for a password)
|
|
|
|
Push image to Dockerhub
|
|
docker push kowhai/ckan-base:2.9 |