2022-07-13 18:36:14 +02:00
|
|
|
volumes:
|
|
|
|
ckan_storage:
|
2024-04-24 12:50:02 +02:00
|
|
|
ckan_logs:
|
2022-07-13 18:36:14 +02:00
|
|
|
pg_data:
|
|
|
|
solr_data:
|
2024-04-30 08:47:57 +02:00
|
|
|
pip_cache:
|
|
|
|
site_packages:
|
|
|
|
vscode_server:
|
2022-07-13 18:36:14 +02:00
|
|
|
|
2024-04-30 13:36:12 +02:00
|
|
|
|
2020-09-17 14:10:25 +02:00
|
|
|
services:
|
2023-05-02 14:47:10 +02:00
|
|
|
apache:
|
|
|
|
build:
|
|
|
|
context: apache/
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
env_file:
|
|
|
|
- .env
|
2024-04-30 13:08:35 +02:00
|
|
|
environment:
|
|
|
|
- CKAN_COMPOSE_SERVICE=${CKAN_DEV_COMPOSE_SERVICE}
|
|
|
|
- PROXY_CKAN_PROXY_PASS=http://${CKAN_DEV_COMPOSE_SERVICE}:${CKAN_PORT}
|
2023-05-02 14:47:10 +02:00
|
|
|
depends_on:
|
2024-04-30 13:08:35 +02:00
|
|
|
- ${CKAN_DEV_COMPOSE_SERVICE}
|
2023-05-02 14:47:10 +02:00
|
|
|
ports:
|
|
|
|
- "0.0.0.0:${APACHE_PORT_HOST}:${APACHE_PORT}"
|
|
|
|
restart: on-failure:3
|
|
|
|
|
2020-09-17 14:10:25 +02:00
|
|
|
ckan-dev:
|
|
|
|
build:
|
|
|
|
context: ckan/
|
|
|
|
dockerfile: Dockerfile.dev
|
|
|
|
args:
|
|
|
|
- TZ=${TZ}
|
|
|
|
env_file:
|
|
|
|
- .env
|
2023-04-17 09:49:40 +02:00
|
|
|
logging:
|
|
|
|
driver: "json-file"
|
|
|
|
options:
|
|
|
|
max-size: "100m"
|
|
|
|
max-file: "10"
|
2024-04-30 08:47:57 +02:00
|
|
|
links:
|
2024-04-24 12:50:02 +02:00
|
|
|
- db
|
|
|
|
- solr
|
|
|
|
- redis
|
2020-09-17 14:10:25 +02:00
|
|
|
ports:
|
2022-12-12 13:21:17 +01:00
|
|
|
- "0.0.0.0:${CKAN_PORT_HOST}:${CKAN_PORT}"
|
2020-09-17 14:10:25 +02:00
|
|
|
volumes:
|
|
|
|
- ckan_storage:/var/lib/ckan
|
2024-04-24 12:50:02 +02:00
|
|
|
- ckan_logs:/var/log
|
2022-07-13 18:36:14 +02:00
|
|
|
- ./src:/srv/app/src_extensions
|
2024-04-30 08:47:57 +02:00
|
|
|
- pip_cache:/root/.cache/pip
|
|
|
|
- site_packages:/usr/lib/python3.9/site-packages
|
|
|
|
- vscode_server:/root/.vscode-server
|
2022-07-13 18:36:14 +02:00
|
|
|
restart: unless-stopped
|
2022-07-18 16:42:42 +02:00
|
|
|
healthcheck:
|
2023-05-02 14:47:10 +02:00
|
|
|
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:${CKAN_PORT}"]
|
|
|
|
|
|
|
|
pycsw:
|
|
|
|
build:
|
|
|
|
context: ckan-pycsw/
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
env_file:
|
|
|
|
- .env
|
2024-04-30 08:47:57 +02:00
|
|
|
logging:
|
|
|
|
driver: "json-file"
|
|
|
|
options:
|
|
|
|
max-size: "100m"
|
|
|
|
max-file: "10"
|
2023-05-02 14:47:10 +02:00
|
|
|
depends_on:
|
2024-05-07 14:59:55 +02:00
|
|
|
- ${CKAN_DEV_COMPOSE_SERVICE}
|
2023-05-02 14:47:10 +02:00
|
|
|
ports:
|
|
|
|
- "0.0.0.0:${PYCSW_PORT_HOST}:${PYCSW_PORT}"
|
|
|
|
volumes:
|
|
|
|
- ./log:${APP_DIR}/log
|
|
|
|
- ./metadata:${APP_DIR}/metadata
|
2024-04-30 08:47:57 +02:00
|
|
|
restart: on-failure:3
|
2023-05-02 14:47:10 +02:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:${PYCSW_PORT}"]
|
2020-09-17 14:10:25 +02:00
|
|
|
|
|
|
|
db:
|
|
|
|
build:
|
|
|
|
context: postgresql/
|
2022-07-13 18:36:14 +02:00
|
|
|
environment:
|
2023-08-04 12:53:16 +02:00
|
|
|
- POSTGRES_USER
|
2023-06-13 14:24:18 +02:00
|
|
|
- POSTGRES_PASSWORD
|
2023-08-04 12:53:16 +02:00
|
|
|
- POSTGRES_DB
|
|
|
|
- CKAN_DB_USER
|
2023-06-13 14:24:18 +02:00
|
|
|
- CKAN_DB_PASSWORD
|
2023-08-04 12:53:16 +02:00
|
|
|
- CKAN_DB
|
|
|
|
- DATASTORE_READONLY_USER
|
|
|
|
- DATASTORE_READONLY_PASSWORD
|
|
|
|
- DATASTORE_DB
|
2020-09-17 14:10:25 +02:00
|
|
|
volumes:
|
|
|
|
- pg_data:/var/lib/postgresql/data
|
2024-04-30 08:47:57 +02:00
|
|
|
logging:
|
|
|
|
driver: "json-file"
|
|
|
|
options:
|
|
|
|
max-size: "100m"
|
|
|
|
max-file: "10"
|
2022-07-13 18:36:14 +02:00
|
|
|
restart: unless-stopped
|
|
|
|
healthcheck:
|
2023-06-10 08:11:18 +02:00
|
|
|
test: ["CMD", "pg_isready", "-U", "${POSTGRES_USER}", "-d", "${POSTGRES_DB}"]
|
2022-07-13 18:36:14 +02:00
|
|
|
|
2020-09-17 14:10:25 +02:00
|
|
|
solr:
|
2023-05-02 14:47:10 +02:00
|
|
|
build:
|
|
|
|
context: solr/
|
|
|
|
dockerfile: Dockerfile.spatial
|
|
|
|
env_file:
|
|
|
|
- .env
|
2023-04-17 09:49:40 +02:00
|
|
|
logging:
|
|
|
|
driver: "json-file"
|
|
|
|
options:
|
|
|
|
max-size: "100m"
|
|
|
|
max-file: "10"
|
2023-01-19 13:34:17 +01:00
|
|
|
volumes:
|
|
|
|
- solr_data:/var/solr
|
2022-07-13 18:36:14 +02:00
|
|
|
restart: unless-stopped
|
|
|
|
healthcheck:
|
2023-04-13 14:10:40 +02:00
|
|
|
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:${SOLR_PORT}/solr/"]
|
2020-09-17 14:10:25 +02:00
|
|
|
|
|
|
|
redis:
|
2022-07-13 18:36:14 +02:00
|
|
|
image: redis:${REDIS_VERSION}
|
2023-04-17 09:49:40 +02:00
|
|
|
logging:
|
|
|
|
driver: "json-file"
|
|
|
|
options:
|
|
|
|
max-size: "100m"
|
|
|
|
max-file: "10"
|
2022-07-13 18:36:14 +02:00
|
|
|
restart: unless-stopped
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "redis-cli", "-e", "QUIT"]
|