Merge branch 'master' into allow-https-in-dev-mode

This commit is contained in:
Brett Jones 2023-10-07 16:15:49 +02:00 committed by GitHub
commit 21c794b9b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 10 deletions

View File

@ -97,6 +97,7 @@ To start the containers:
See [CKAN Images](#ckan-images) for more details of what happens when using development mode.
##### Create an extension
You can use the ckan [extension](https://docs.ckan.org/en/latest/extensions/tutorial.html#creating-a-new-extension) instructions to create a CKAN extension, only executing the command inside the CKAN container and setting the mounted `src/` folder as output:

View File

@ -1,5 +1,4 @@
FROM ckan/ckan-base:2.10.1
#FROM ckan/ckan-base:2.9.9
# Set up environment variables
ENV APP_DIR=/srv/app

View File

@ -1,5 +1,4 @@
FROM ckan/ckan-base:2.10.1-dev
#FROM ckan/ckan-base:2.9.9-dev
FROM ckan/ckan-dev:2.10.1
# Set up environment variables

View File

@ -8,7 +8,6 @@ volumes:
services:
ckan-dev:
container_name: ${CKAN_CONTAINER_NAME}
build:
context: ckan/
dockerfile: Dockerfile.dev
@ -33,14 +32,12 @@ services:
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
datapusher:
container_name: ${DATAPUSHER_CONTAINER_NAME}
image: ckan/ckan-base-datapusher:${DATAPUSHER_VERSION}
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:8800"]
db:
container_name: ${POSTGRESQL_CONTAINER_NAME}
build:
context: postgresql/
environment:
@ -60,7 +57,6 @@ services:
test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER}", "-d", "${POSTGRES_DB}"]
solr:
container_name: ${SOLR_CONTAINER_NAME}
image: ckan/ckan-solr:${SOLR_IMAGE_VERSION}
volumes:
- solr_data:/var/solr
@ -69,7 +65,6 @@ services:
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:8983/solr/"]
redis:
container_name: ${REDIS_CONTAINER_NAME}
image: redis:${REDIS_VERSION}
restart: unless-stopped
healthcheck: