diff options
Diffstat (limited to 'bin/run.php')
-rwxr-xr-x | bin/run.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/run.php b/bin/run.php new file mode 100755 index 0000000..2621c5d --- /dev/null +++ b/bin/run.php @@ -0,0 +1,9 @@ +#!/usr/bin/env php + +<?php + +$rootDir = dirname(__DIR__); +$buildDir = "$rootDir/build"; + +chdir($buildDir); +exec("docker-compose up -d"); |