summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/setup4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/setup b/bin/setup
index 914b7f4..12c0798 100755
--- a/bin/setup
+++ b/bin/setup
@@ -7,4 +7,6 @@ cd "$(dirname "$0")/.."
bundle config --local path vendor
bundle config --local jobs "$(nproc)"
bundle install
-docker-compose up -d
+if command -v docker-compose; then
+ docker-compose up -d
+fi