Optimized copy configuration for presentation of elk for IBM

This commit is contained in:
Kevin Veen-Birkenbach 2018-12-06 08:53:27 +01:00
parent 61a6ea6b36
commit 39c6980fe4
2 changed files with 8 additions and 4 deletions

View File

@ -1,8 +1,7 @@
(
cd $(dirname $(readlink -f ${0}))/../;
cp -v .env.dist docker-symfony/.env;
cp -v ./application/phpunit.xml.dist ./application/phpunit.xml;
cd docker-symfony;
cd $(dirname $(readlink -f ${0}))/;
bash ./copy-configuration.sh
cd ../docker-symfony;
docker-compose build;
docker-compose up -d;
)

View File

@ -0,0 +1,5 @@
#!/bin/bash
# Copies the configuration files
cd $(dirname $(readlink -f ${0}))/../;
cp -v .env.dist docker-symfony/.env;
cp -v ./application/phpunit.xml.dist ./application/phpunit.xml;