File tree Expand file tree Collapse file tree 5 files changed +24
-9
lines changed Expand file tree Collapse file tree 5 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ We're in #ddev-for-core-dev on [Drupal Slack](https://www.drupal.org/community/c
7
7
```
8
8
git clone https://git.drupalcode.org/project/drupal.git drupal
9
9
cd drupal
10
- ddev config --project-type=drupal10
10
+ ddev config --omit-containers=db --disable-settings-management
11
11
ddev start
12
- ddev corepack enable
13
12
ddev get justafish/ddev-drupal-core-dev
14
13
ddev restart
15
14
ddev composer install
Original file line number Diff line number Diff line change
1
+ # #ddev-generated
2
+ # This file is placed by the justafish/ddev-drupal-core-dev addon.
3
+
4
+ webimage_extra_packages : ["chromium-driver"]
5
+ ddev_version_constraint : ' >=v1.23.0'
6
+ upload_dirs :
7
+ # The install technique tries to remove all of sites/default/files
8
+ # but with DDEV + mutagen that isn't possible.
9
+ # so just redirect the upload_dirs.
10
+ - .ddev/tmp
Original file line number Diff line number Diff line change 3
3
name : ddev-drupal-core-dev
4
4
5
5
project_files :
6
- - web-build/Dockerfile
6
+ - config.ddev-drupal-core-dev.yaml
7
+ - web-build/Dockerfile.ddev-drupal-core-dev
7
8
- docker-compose.core-dev-selenium.yaml
8
9
- core-dev/phpunit-firefox.xml
9
10
- core-dev/phpunit-chrome.xml
@@ -26,7 +27,6 @@ post_install_actions:
26
27
- cp core-dev/gitignore ../.gitignore
27
28
- mkdir -p ../test_output
28
29
- chmod +w ../test_output
29
- - ddev exec corepack enable
30
30
- cd ../core && ddev yarn
31
31
32
32
removal_actions :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ #ddev-generated
2
+
3
+ ARG TARGETPLATFORM
4
+
5
+ # Drupal core needs later Sqlite than Debian 12 so install from Debian Trixie.
6
+ RUN SQLITE_VERSION=3.45.1 && \
7
+ mkdir -p /tmp/sqlite3 && \
8
+ wget -O /tmp/sqlite3/sqlite3.deb https://ftp.debian.org/debian/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETPLATFORM##linux/}.deb && \
9
+ wget -O /tmp/sqlite3/libsqlite3.deb https://ftp.debian.org/debian/pool/main/s/sqlite3/libsqlite3-0_${SQLITE_VERSION}-1_${TARGETPLATFORM##linux/}.deb && \
10
+ dpkg -i /tmp/sqlite3/*.deb && \
11
+ rm -rf /tmp/sqlite3
You can’t perform that action at this time.
0 commit comments