Review extensions installation guidance

This commit is contained in:
amercader 2023-10-17 12:47:08 +02:00
parent 2e46f06280
commit c5b3981b39
2 changed files with 8 additions and 9 deletions

View File

@ -1,5 +1,7 @@
FROM ckan/ckan-base:2.10.1
# Install any extensions needed by your CKAN instance
# See Dockerfile.dev for more details and examples
# Copy custom initialization scripts
COPY docker-entrypoint.d/* /docker-entrypoint.d/

View File

@ -1,16 +1,13 @@
FROM ckan/ckan-dev:2.10.1
# Set up environment variables
ENV APP_DIR=/srv/app
# Install any extensions needed by your CKAN instance
# - Make sure to add the plugins to CKAN__PLUGINS in the .env file
# - Also make sure all extra configuration options are added to the CKAN config file (ckan.ini)
# This can be done by creating an overriding start_ckan_dev_development.sh file:
# (https://github.com/ckan/ckan-docker-base/blob/main/ckan-2.9/dev/setup/start_ckan_development.sh) ie: updating the 'ckan config-tool' lines
# For more on config-tool please see https://docs.ckan.org/en/latest/maintaining/cli.html#config-tool-tool-for-editing-options-in-a-ckan-config-file
# or using Crudini (https://github.com/pixelb/crudini)
# - Also make sure all provide all extra configuration options, either by:
# * Adding them to the .env file (check the ckanext-envvars syntax for env vars), or
# * Adding extra configuration scripts to /docker-entrypoint.d folder) to update
# the CKAN config file (ckan.ini) with the `ckan config-tool` command
#
# See README > Extending the base images for more details
#
# For instance:
#