From ec8f93ce3b12075a60ce738d31980fbb77ae4cf9 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Sat, 15 Aug 2020 09:38:38 +0200
Subject: [PATCH] Map the local .gitignore_global into containers

---
 CHANGELOG         | 8 ++++++++
 run/scripts/start | 1 +
 setup/scripts/l3d | 1 +
 3 files changed, 10 insertions(+)

diff --git a/CHANGELOG b/CHANGELOG
index fc68dae..57c6aeb 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,11 @@
+v1.13.1 2020-07-15
+------------------
+Map the local .gitignore_global into containers
+
+v1.13.0 2020-07-20
+------------------
+Add support for Drupal 9 project templates
+
 v1.12.8 2020-05-22
 ------------------
 Force update to update to base image v1.4.4
diff --git a/run/scripts/start b/run/scripts/start
index e580c36..975dc4f 100755
--- a/run/scripts/start
+++ b/run/scripts/start
@@ -35,6 +35,7 @@ function startContainer {
         --volume ${SSHAUTH}:${SSHAUTHSOCK} \
         --volume ${HOMEDIR}/.traefik:/root/.traefik \
         --volume ${HOMEDIR}/.gitconfig:/root/.gitconfig \
+        --volume ${HOMEDIR}/.gitignore_global:/root/.gitignore_global \
         --volume ${HOMEDIR}/.composer/auth.json:/root/.composer/auth.json \
         --workdir /drupal \
         --restart unless-stopped \
diff --git a/setup/scripts/l3d b/setup/scripts/l3d
index c478a9d..564f0d2 100755
--- a/setup/scripts/l3d
+++ b/setup/scripts/l3d
@@ -25,6 +25,7 @@ esac
 mkdir -p ${HOME}/.composer
 touch ${HOME}/.composer/auth.json
 touch ${HOME}/.gitconfig
+touch ${HOME}/.gitignore_global
 
 ID=$(docker container ls --all -q -f name=^l3drun$)
 if [[ ! -n ${ID} ]]; then
-- 
GitLab