Merge branch 'master' of github.com:KevinFrantz/infinito

This commit is contained in:
Kevin Frantz 2018-12-08 13:26:45 +01:00
commit 8afb91c690
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;