Skip to content

Commit 0e923c3

Browse files
gregharveynfawbertDionisioFGdavids4David Suissa
authored
Drupal template fixes pr devel (#93)
* Fix docker-compose v2 issue and re-release to include clamav role (#68) * Killing old ce-dev container when updating (#70) * Added Drupal9 and Localgov templates (#73) * New release 1.1.19 (#75) * Updated package.json version: 1.1.19 (#77) * Updated package.json version: 1.1.19 * New tag to fix repo key for Chrome (#83) * #CE-62820: Added support for composer '2.x' in Drupal 9 provision tem… (#89) (#91) * #CE-62820: Added support for composer '2.x' in Drupal 9 provision template. * #CE-62820: Attempt to fix pull request test cases by providing a default value for the 'new_user' in provision. * #CE-62820: Attempt to fix pull request test cases by providing a default value for the 'key_name' in provision. * #CE-62820: Attempt to fix pull request test cases by providing a default values for 'ce_deploy' in provision. Co-authored-by: David Suissa <david.suissa@codeenigma.com> Co-authored-by: David Suissa <david.suissa@codeenigma.com> * REL 1.1.21: Using composer 2 with Drupal 9 by default (#92) * Adding a Drupal 9 template to ce-dev. * Testing nodejs version change with blank template. * Incrementing version for release. * There's no drupal9 template for ce-deploy. Co-authored-by: nfawbert <62660788+nfawbert@users.noreply.github.com> Co-authored-by: Dionisio <dionisiofernandez83@gmail.com> Co-authored-by: davids4 <35807961+davids4@users.noreply.github.com> Co-authored-by: David Suissa <david.suissa@codeenigma.com>
1 parent eb65440 commit 0e923c3

File tree

6 files changed

+9
-14
lines changed

6 files changed

+9
-14
lines changed

RELEASE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.1.20
2-
No changes. A new tag to re-build the container image and fix the repo key for Chrome
1+
1.1.22
2+
Drupal 9 template building.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ce-dev",
33
"description": "Local Stack wrapper tool",
4-
"version": "1.1.20",
4+
"version": "1.1.22",
55
"author": " @pm98zz-c",
66
"bin": {
77
"ce-dev": "./bin/run"

templates/blank/ce-dev/ansible/provision.yml.j2

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@
88
- _env_type: dev
99
- lhci:
1010
enable_vnc: true
11-
pre_tasks:
12-
# Debian has nodejs 12.x installed by default.
13-
- name: Remove "node" package installed by default
14-
ansible.builtin.apt:
15-
name: nodejs
16-
state: absent
17-
purge: true
11+
- nodejs:
12+
version: 14.x
1813
tasks:
1914
- apt:
2015
update_cache: true

templates/drupal9/ce-dev/ansible/deploy.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
# Template playbook for a local Drupal9 codebase.
2+
# Template playbook for a local Drupal 9 codebase.
33
- hosts: {{ project_name }}-web
44
vars:
55
- project_name: {{ project_name }}

templates/drupal9/ce-dev/ce-dev.compose.prebuilt.yml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ x-ce_dev:
1111
- 'https://www.{{ project_name }}.local'
1212
services:
1313
web:
14-
image: 'codeenigma/drupal8-web:latest'
14+
image: 'codeenigma/drupal9-web:latest'
1515
expose:
1616
- 443
1717
- 80
@@ -34,6 +34,6 @@ services:
3434
cap_add:
3535
- NET_ADMIN
3636
db:
37-
image: 'codeenigma/drupal8-db:latest'
37+
image: 'codeenigma/drupal9-db:latest'
3838
environment:
3939
MYSQL_ROOT_PASSWORD: ce-dev

templates/prebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# Test project creation and pre-build image.
33
set -e
4-
PROJECTS="blank drupal8"
4+
PROJECTS="blank drupal8 drupal9"
55

66
# Common processing.
77
OWN_DIR=$(dirname "$0")

0 commit comments

Comments
 (0)