forked from ckan/ckan-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CKAN base images to ckan-2.9.11
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/mjanez/ckan-base-spatial:ckan-2.9.9 | ||
FROM ghcr.io/mjanez/ckan-base-spatial:ckan-2.9.11 | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set up environment variables | ||
|
@@ -83,4 +83,4 @@ RUN chmod +x ${APP_DIR}/start_ckan.sh | |
COPY setup/workers/* /etc/supervisord.d/ | ||
|
||
# Start CKAN | ||
CMD ["/bin/sh", "-c", "$APP_DIR/start_ckan.sh"] | ||
CMD ["/bin/sh", "-c", "$APP_DIR/start_ckan.sh"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/mjanez/ckan-base-spatial:ckan-2.9.9-dev | ||
FROM ghcr.io/mjanez/ckan-base-spatial:ckan-2.9.11-dev | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set up environment variables | ||
|
@@ -16,11 +16,12 @@ RUN echo ${TZ} > /etc/timezone && \ | |
|
||
# 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: | ||
# | ||
|
@@ -79,4 +80,4 @@ RUN for d in $APP_DIR/patches/*; do \ | |
fi \ | ||
done ; \ | ||
fi ; \ | ||
done | ||
done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/mjanez/ckan-docker:ckan-2.9.9 | ||
FROM ghcr.io/mjanez/ckan-docker:ckan-2.9.11 | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set up environment variables | ||
|