summaryrefslogtreecommitdiff
path: root/bin/run.php
diff options
context:
space:
mode:
Diffstat (limited to 'bin/run.php')
-rwxr-xr-xbin/run.php9
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");