Skip to content

Commit

Permalink
feat: add a devcontainer.json that uses dolphin (#64)
Browse files Browse the repository at this point in the history
Co-authored-by: Mateus Dutra Dadalto <mateusdadalto@gmail.com>
  • Loading branch information
damienwebdev and MateusDadalto committed Aug 4, 2022
1 parent ba7ca69 commit 708fbe7
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"workspaceFolder": "/var/www/html",
"forwardPorts": [
80,
443,
8025
],
"extensions": [
"bmewburn.vscode-intelephense-client",
"felixfbecker.php-debug",
"ikappas.phpcs",
"neilbrayfield.php-docblocker",
"valeryanm.vscode-phpsab"
],
"service": "magento2",
"shutdownAction": "stopCompose",
"dockerComposeFile": [
"../docker-compose.yml",
"../compose/base/2.4.yml",
"../compose/sync/containersync.yml"
],
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "sh",
"icon": "terminal-linux"
}
}
},
"initializeCommand": "cp -u .env.sample .env",
"postCreateCommand": [
"/bin/sh",
"-c",
"/root/setup.sh"
]
}

0 comments on commit 708fbe7

Please sign in to comment.