Skip to content
Snippets Groups Projects

Merging develop into main

Merged jurgenhaas requested to merge develop into main
4 files
+ 40
30
Compare changes
  • Side-by-side
  • Inline
Files
4
  • 42913580
    gitlab-drupal-ci#48 · 42913580
    jurgenhaas authored
    - Copy docker-compose.yml into l3drun if it exists
    - Only write to files that are writable
    - Update to v2.2.17 of upstream image
+ 4
3
#!/bin/bash
function getConfig() {
if [[ -f "docker-compose.yml" ]]; then
COMPOSE_PROJECT_NAME=$(yq .name docker-compose.yml)
PHP_VERSION=$(yq .services.php.image docker-compose.yml | cut -d':' -f 2)
if [[ "$L3D_COMPOSE" != "[]" ]]; then
COMPOSE_PROJECT_NAME=$(yq .name $L3D_COMPOSE)
PHP_VERSION=$(yq .services.php.image $L3D_COMPOSE | cut -d':' -f 2)
rm "$L3D_COMPOSE"
fi
if [[ ! -n ${PHP_VERSION} ]]; then
while true; do
Loading