Przeglądaj źródła

move postCreateCommands to a separate file

Joe Skeen 2 lat temu
rodzic
commit
7a5036d957

+ 1 - 5
.devcontainer/devcontainer.json

@@ -40,11 +40,7 @@
     "forwardPorts": [
         8080
     ],
-    "postCreateCommand": [
-        "composer install --no-dev --optimize-autoloader",
-        "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html",
-        "npm install --global nyc"
-    ],
+    "postCreateCommand": ".devcontainer/postCreateCommand.sh",
     // alternatiuve: apache2ctl start (but requires root)
     "postAttachCommand": "php -S 0.0.0.0:8080"
 }

+ 5 - 0
.devcontainer/postCreateCommand.sh

@@ -0,0 +1,5 @@
+#!/bin/bash
+
+composer install --no-dev --optimize-autoloader
+sudo chmod a+x "$(pwd)" && sudo rm -rf /var/www/html && sudo ln -s "$(pwd)" /var/www/html
+npm install --global nyc