You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
635 B
26 lines
635 B
// https://aka.ms/devcontainer.json |
|
{ |
|
"name": "Existing Docker Compose (Extend)", |
|
"dockerComposeFile": [ |
|
"../docker-compose.yml" |
|
], |
|
"service": "laravel.test", |
|
"workspaceFolder": "/var/www/html", |
|
"settings": {}, |
|
"customizations": { |
|
"vscode": { |
|
"extensions": [ |
|
// "mikestead.dotenv", |
|
// "amiralizadeh9480.laravel-extra-intellisense", |
|
// "ryannaddy.laravel-artisan", |
|
// "onecentlin.laravel5-snippets", |
|
// "onecentlin.laravel-blade" |
|
] |
|
} |
|
}, |
|
"remoteUser": "sail", |
|
"postCreateCommand": "chown -R 1000:1000 /var/www/html" |
|
// "forwardPorts": [], |
|
// "runServices": [], |
|
// "shutdownAction": "none", |
|
}
|
|
|