-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds devcontainer to install command (#203)
* adds devcontainer to install command * formatting Co-authored-by: Taylor Otwell <taylorotwell@gmail.com>
- Loading branch information
1 parent
6bee7a3
commit 30896b5
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// https://aka.ms/devcontainer.json | ||
{ | ||
"name": "Existing Docker Compose (Extend)", | ||
"dockerComposeFile": [ | ||
"../docker-compose.yml" | ||
], | ||
"service": "laravel.test", | ||
"workspaceFolder": "/var/www/html", | ||
"settings": {}, | ||
"extensions": [ | ||
// "mikestead.dotenv", | ||
// "amiralizadeh9480.laravel-extra-intellisense", | ||
// "ryannaddy.laravel-artisan", | ||
// "onecentlin.laravel5-snippets", | ||
// "onecentlin.laravel-blade" | ||
], | ||
"remoteUser": "sail", | ||
// "forwardPorts": [], | ||
// "runServices": [], | ||
// "postCreateCommand": "apt-get update && apt-get install -y curl", | ||
// "shutdownAction": "none", | ||
} |