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

Automatic update #506

Merged
merged 1 commit into from
Jan 26, 2023
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
161 changes: 81 additions & 80 deletions composer.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ field_mapper_config:
value: '$.attributes[''short_title'']'
storage_client_id: helfi_news
storage_client_config: { }
persistent_cache_max_age: -1
persistent_cache_max_age: 10800
annotation_entity_type_id: null
annotation_bundle_id: null
annotation_field_name: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ field_mapper_config:
value: '$.attributes["name"]'
storage_client_id: helfi_news_groups
storage_client_config: { }
persistent_cache_max_age: -1
persistent_cache_max_age: 86400
annotation_entity_type_id: null
annotation_bundle_id: null
annotation_field_name: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ field_mapper_config:
value: '$.attributes["name"]'
storage_client_id: helfi_news_neighbourhoods
storage_client_config: { }
persistent_cache_max_age: -1
persistent_cache_max_age: 86400
annotation_entity_type_id: null
annotation_bundle_id: null
annotation_field_name: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ field_mapper_config:
value: '$.attributes["name"]'
storage_client_id: helfi_news_tags
storage_client_config: { }
persistent_cache_max_age: -1
persistent_cache_max_age: 86400
annotation_entity_type_id: null
annotation_bundle_id: null
annotation_field_name: null
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ services:
- internal
db:
container_name: "${COMPOSE_PROJECT_NAME}-db"
image: druidfi/mariadb:10.7-drupal
image: druidfi/mariadb:10.9-drupal
volumes:
- db_data:/var/lib/mysql
ports:
Expand Down
5 changes: 5 additions & 0 deletions docker/openshift/entrypoints/20-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ if [ ! -n "$OPENSHIFT_BUILD_NAME" ]; then
exit 1
fi

# Generate twig caches.
if [ ! -d "/tmp/twig" ]; then
drush twig:compile || true
fi

# This script is run every time a container is spawned and certain environments might
# start more than one Drupal container. This is used to make sure we run deploy
# tasks only once per deploy.
Expand Down