Skip to content

Commit

Permalink
update for 10.3-rc to 10.3.0-beta1, 11.0-rc to 11.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
neffets committed May 30, 2024
1 parent bd4aa39 commit f376611
Show file tree
Hide file tree
Showing 38 changed files with 1,681 additions and 42 deletions.
125 changes: 125 additions & 0 deletions 10.3-rc/php8.2/apache-bookworm/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions 10.3-rc/php8.2/apache-bookworm/apache2-pre-start-drupal
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Step 1 - add optional Composer-Modules
if [ "$DRUPAL_COMPOSER_MODULES" != "" ]; then
(
cd /opt/drupal
for MOD in $DRUPAL_COMPOSER_MODULES;
do
composer require "$MOD"
done
)
fi

# LAST start normal apache2-foreground
exec /usr/local/bin/apache2-foreground "$@"
125 changes: 125 additions & 0 deletions 10.3-rc/php8.2/apache-bullseye/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions 10.3-rc/php8.2/apache-bullseye/apache2-pre-start-drupal
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Step 1 - add optional Composer-Modules
if [ "$DRUPAL_COMPOSER_MODULES" != "" ]; then
(
cd /opt/drupal
for MOD in $DRUPAL_COMPOSER_MODULES;
do
composer require "$MOD"
done
)
fi

# LAST start normal apache2-foreground
exec /usr/local/bin/apache2-foreground "$@"
108 changes: 108 additions & 0 deletions 10.3-rc/php8.2/fpm-alpine3.18/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f376611

Please sign in to comment.