okfn / docker-ckan

Docker images and Docker Compose setup for CKAN [Not Maintained]
GNU Affero General Public License v3.0
81 stars 88 forks source link

:warning: This repository is no longer maintained :warning: #129

Open amercader opened 9 months ago

amercader commented 9 months ago

The images and compose setup in this repository are no longer supported and will not receive any further update. The openknowledge/ckan-base and openknowledge/ckan-dev images will be removed from the Docker Hub in the future.

Users are encouraged to migrate to the official CKAN Docker images, which follow a very similar approach and structure, making the transition a very easy one.

In most cases, it will be just a matter of changing the base image in your own Docker files:

diff --git a/ckan/Dockerfile b/ckan/Dockerfile
index 34c26e9..c20bd2a 100644
--- a/ckan/Dockerfile
+++ b/ckan/Dockerfile
@@ -1,5 +1,5 @@
-FROM openknowledge/ckan-base:2.10.1
+FROM ckan/ckan-base:2.10.1

diff --git a/ckan/Dockerfile.dev b/ckan/Dockerfile.dev
index 1b44de7..c5fec8c 100644
--- a/ckan/Dockerfile.dev
+++ b/ckan/Dockerfile.dev
@@ -1,4 +1,4 @@
-FROM openknowledge/ckan-dev:2.10.1
+FROM ckan/ckan-dev:2.10.1

If you have customized the entrypoint script you might need to check the startup logs to see if there are any modifications needed.