Skip to content
Snippets Groups Projects
Commit ec8f93ce authored by jurgenhaas's avatar jurgenhaas
Browse files

Map the local .gitignore_global into containers

parent 369e31e2
No related branches found
No related tags found
No related merge requests found
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
......
......@@ -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 \
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment