Skip to content

Commit

Permalink
Update CKAN base images to ckan-2.9.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mjanez committed Mar 20, 2024
1 parent f39aafe commit 3c09d93
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ckan/Dockerfile
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
Expand Down Expand Up @@ -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"]
15 changes: 8 additions & 7 deletions ckan/Dockerfile.dev
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
Expand All @@ -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:
#
Expand Down Expand Up @@ -79,4 +80,4 @@ RUN for d in $APP_DIR/patches/*; do \
fi \
done ; \
fi ; \
done
done
2 changes: 1 addition & 1 deletion ckan/Dockerfile.ghcr
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
Expand Down

0 comments on commit 3c09d93

Please sign in to comment.