Go to file
Brett 06c14e985f more changes 2021-12-16 13:59:49 +01:00
.github/workflows Update build.yml 2021-05-13 16:43:01 +02:00
ckan More updates 2021-05-13 16:42:11 +02:00
datapusher More updates 2021-05-10 15:21:02 +02:00
images More commits 2021-05-21 13:27:42 +02:00
nginx update nginx Dockerfile 2021-12-09 14:44:35 +01:00
postgresql Dockerfile changes etc 2021-01-15 16:05:22 +01:00
solr Update solr 2021-12-10 11:43:04 +01:00
.env update spaces in env file 2021-12-10 15:01:16 +01:00
.env.template update spaces in env file 2021-12-10 15:01:16 +01:00
.gitignore Initial commit 2014-10-26 21:21:58 +00:00
README.txt more changes 2021-12-16 13:59:49 +01:00
dev-requirements.txt More updates 2020-09-17 14:10:25 +02:00
docker-compose.dev.yml More commits 2021-05-21 13:27:42 +02:00
docker-compose.yml update spaces in env file 2021-12-10 15:01:16 +01:00
not-compose.sh more changes 2021-12-16 13:59:49 +01:00
pruneall.sh Create pruneall.sh 2021-12-10 14:42:47 +01:00

README.txt

### 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 ###

(From Adria)
Be limited in scope, and act as a base that users can extend to their own needs
Be opinionated, and provide one way to do things
Be automatically tested

have an nginx container included?

ARG should be used for sensitive variables so as to keep the values of these variables 
out of the build and hence will not show with an "inspect image" command

Do we pre-build a CKAN image and use that (and extend) as the base image OR 
    just build it from scratch and while saving to storage what we need to

Use a bind mount for the config file (ckan.ini)
  docker cp ckan:/srv/app/ckan.ini ./ckan.ini
  docker run -p <port1>:<port2> --mount type=bind,source="$(pwd)"/ckan.ini,target=/srv/app/ckan.ini -d <ckan_base_image>

Maybe include a script to replace docker-compose if required