Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CKAN patch versions to 2.11.1 and 2.10.6 #143

Merged
merged 2 commits into from
Dec 11, 2024
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
2 changes: 1 addition & 1 deletion compose/2.10/.env
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ POSTGRES_PORT=5432
DATASTORE_READONLY_PASSWORD=datastore

# CKAN
CKAN_VERSION=2.10.5
CKAN_VERSION=2.10.6
CKAN_SITE_ID=default
CKAN_SITE_URL=http://localhost:5000
CKAN_PORT=5000
Expand Down
2 changes: 1 addition & 1 deletion compose/2.11/.env
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ POSTGRES_PORT=5432
DATASTORE_READONLY_PASSWORD=datastore

# CKAN
CKAN_VERSION=2.11.0
CKAN_VERSION=2.11.1
CKAN_SITE_ID=default
CKAN_SITE_URL=http://localhost:5000
CKAN_PORT=5000
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM alpine:3.17.2 AS ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.10.5
ENV IMAGE_TAG=2.10.6

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.10.5
ENV GIT_BRANCH=ckan-2.10.6

# Set src dirs
ENV SRC_DIR=/srv/app/src
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.10/Dockerfile.focal
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM ubuntu:focal-20210827 AS ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.10.5-focal
ENV IMAGE_TAG=2.10.6-focal

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.10.5
ENV GIT_BRANCH=ckan-2.10.6

# Set timezone
ENV TZ=UTC
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.10/Dockerfile.xloader
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM alpine:3.17.2 as ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.10.5-xloader
ENV IMAGE_TAG=2.10.6-xloader

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.10.5
ENV GIT_BRANCH=ckan-2.10.6

# Set src dirs
ENV SRC_DIR=/srv/app/src
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM alpine:3.17.2 AS ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.11.0
ENV IMAGE_TAG=2.11.1

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.11.0
ENV GIT_BRANCH=ckan-2.11.1

# Set src dirs
ENV SRC_DIR=/srv/app/src
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.11/Dockerfile.focal
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM ubuntu:focal-20240530 as ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.11.0-focal
ENV IMAGE_TAG=2.11.1-focal

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.11.0
ENV GIT_BRANCH=ckan-2.11.1

# Set timezone
ENV TZ=UTC
Expand Down
4 changes: 2 additions & 2 deletions images/ckan/2.11/Dockerfile.xloader
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
FROM alpine:3.17.2 AS ckanbuild

# Used by Github Actions to tag the image with
ENV IMAGE_TAG=2.11.0-xloader
ENV IMAGE_TAG=2.11.1-xloader

# Set CKAN version to build
ENV GIT_URL=https://github.com/ckan/ckan.git
ENV GIT_BRANCH=ckan-2.11.0
ENV GIT_BRANCH=ckan-2.11.1

# Set src dirs
ENV SRC_DIR=/srv/app/src
Expand Down
Loading