Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ TEST_CKAN_DATASTORE_READ_URL=postgresql://datastore_ro:datastore@db/datastore_te
USE_HTTPS_FOR_DEV=false

# CKAN core
CKAN_VERSION=2.10.0
CKAN_VERSION=2.11.4
CKAN_SITE_ID=default
CKAN_SITE_URL=http://localhost:5000
CKAN___BEAKER__SESSION__SECRET=CHANGE_ME
Expand Down Expand Up @@ -57,7 +57,7 @@ TEST_CKAN_REDIS_URL=redis://redis:6379/1
# Datapusher
DATAPUSHER_VERSION=0.0.21
CKAN_DATAPUSHER_URL=http://datapusher:8800
CKAN__DATAPUSHER__CALLBACK_URL_BASE=http://localhost:5000
CKAN__DATAPUSHER__CALLBACK_URL_BASE=http://ckan:5000

# Extensions
CKAN__PLUGINS="image_view text_view datatables_view datastore datapusher envvars"
Expand Down
21 changes: 0 additions & 21 deletions ckan/Dockerfile

This file was deleted.

7 changes: 7 additions & 0 deletions ckan/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
FROM ckan/ckan-dev:2.11

USER root

# Install sudo for development purposes. Also install patch.
RUN apt-get update && apt-get install -y sudo patch && \
echo "ckan ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && \
rm -rf /var/lib/apt/lists/*

# 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 provide all extra configuration options, either by:
Expand Down
212 changes: 0 additions & 212 deletions ckan/setup/prerun.py.override

This file was deleted.

57 changes: 0 additions & 57 deletions ckan/setup/start_ckan.sh.override

This file was deleted.

Loading
Loading