18 lines
401 B
JSON
18 lines
401 B
JSON
{
|
|||
|
|
"version": "0.0.1",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"name": "Dev DB (Postgres only)",
|
||
|
|
"runtimeExecutable": "docker",
|
||
|
|
"runtimeArgs": ["compose", "-f", "docker-compose.dev.yml", "up"],
|
||
|
|
"port": 5432
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Full stack (PHP app + Postgres)",
|
||
|
|
"runtimeExecutable": "docker",
|
||
|
|
"runtimeArgs": ["compose", "up", "--build"],
|
||
|
|
"port": 8080
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|