Skip to content

Releases: ckan/ckan-docker-base

v20260429

Choose a tag to compare

@amercader amercader released this 29 Apr 10:35

What's Changed

Full Changelog: v20251029...v20260429

v20251029

Choose a tag to compare

@amercader amercader released this 29 Oct 13:54
141e286

What's Changed

New Contributors

Full Changelog: v20250507.1...v20251029

v20250507.1

Choose a tag to compare

@amercader amercader released this 07 May 11:08

Minor release to fix an issue with the publish workflow. Please check the v20250507 release for the actual changes included.

v20250507

Choose a tag to compare

@amercader amercader released this 07 May 10:43
24faf61

What's Changed

New Contributors

Full Changelog: v20250416...v20250507

v20250416

Choose a tag to compare

@kowh-ai kowh-ai released this 16 Apr 13:17
5c0f131

What's Changed

New Contributors

Full Changelog: v20250205...v20250416

v20250205

Choose a tag to compare

@amercader amercader released this 05 Feb 12:29
f6e679f

What's Changed

Full Changelog: v20241211...v20250205

v20241211

Choose a tag to compare

@amercader amercader released this 11 Dec 11:54
2b3d885

What's Changed

  • Patch releases 2.11.1 and 2.10.6 by @amercader in #103
  • Move debugpy install to install_src, writable home for dev by @wardi in #101

Full Changelog: v20241203.1...v20241211

v20241203.1

Choose a tag to compare

@amercader amercader released this 03 Dec 14:07
fbda797

What's Changed

Full Changelog: v20241203...v20241203.1

v20241203

Choose a tag to compare

@kowh-ai kowh-ai released this 03 Dec 13:16
2704e6e

What's Changed

  • Add test case to ensure child images can be built by @amercader in #95
  • Add a "-p" option to all mkdir commands by @kowh-ai in #94
  • Remove extra (conflicted copy) Dockerfiles from the repo by @kowh-ai in #98
  • Chore: Update Readme and Changelog by @duttonw in #97
  • Fetch tags in git checkout to fix publish workflows by @amercader in #99

New Contributors

Full Changelog: v20241125...v20241203

v20241125

Choose a tag to compare

@amercader amercader released this 25 Nov 14:29

Important Changes

There are two important changes to be aware of that relate to the CKAN extensions test workflows using GitHub Actions.

  • As announced in previous releases the CKAN images are now built using the Debian-based official Python images. The Alpine-based 2.9 and 2.10 images are no longer supported and won't receive updates going forward. These images are the ones most commonly used in tests. In order to use the supported images, change the following section in your .github/workflows/test.yml file:

        runs-on: ubuntu-latest
        container:
          image: ckan/ckan-dev:2.10

    To one of the supported images, e.g.:

        runs-on: ubuntu-latest
        container:
          image: ckan/ckan-dev:2.10-py3.10

    If you are using the matrix property to support multiple CKAN versions, you can use this syntax:

        strategy:
          matrix:
            include:
              - ckan-version: "2.11"
                ckan-image: "ckan/ckan-dev:2.11-py3.10"
              - ckan-version: "2.10"
                ckan-image: "ckan/ckan-dev:2.10-py3.10"
              - ckan-version: "2.9"
                ckan-image: "ckan/ckan-dev:2.9-py3.9"
          fail-fast: false
    
        name: CKAN ${{ matrix.ckan-version }}
        runs-on: ubuntu-latest
        container:
          image: ${{ matrix.ckan-image }}
        services:
          solr:
            image: ckan/ckan-solr:${{ matrix.ckan-version }}-solr9
          postgres:
            image: ckan/ckan-postgres-dev:${{ matrix.ckan-version }}
  • To strengthen the images security and follow good practices, the latest version of the images runs with a dedicated user rather than root. This is not supported in GitHub Actions so in order to avoid failures, users will need to add the following option:

        container:
          image: ckan/ckan-dev:2.11
          options: --user root

This commit includes both changes to the workflow file.

Changes in file/directory ownership also means that there is now a separate command to install locally mounted extensions when using the Docker Compose development setup:

docker compose -f docker-compose.dev.yml run -u root ckan-dev ./install_src.sh

What's Changed

  • Dev mode: install src dir with separate script by @wardi in #84
  • Minimise all root-owned files/directories in the running CKAN container by @kowh-ai in #80
  • Simplify repo by @amercader in #85
  • Simplify repo: updates by @kowh-ai in #90
  • Build and test actions by @amercader in #89
  • Add actions to build and push images to Docker Hub by @amercader in #73
  • Create an additional Docker image tag with the latest git tag by @amercader in #92

Full Changelog: v20241111...v20241125