42 lines
977 B
JSON
42 lines
977 B
JSON
|
{
|
||
|
"name": "DjangoApp",
|
||
|
"dockerComposeFile": "docker-compose.yml",
|
||
|
"service": "devcontainer",
|
||
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
||
|
"remoteUser": "root",
|
||
|
"mounts": [],
|
||
|
"customizations": {
|
||
|
"vscode": {
|
||
|
"extensions": [
|
||
|
"ms-python.python",
|
||
|
"ms-python.debugpy",
|
||
|
"ms-azuretools.vscode-docker"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"forwardPorts": [
|
||
|
8000,
|
||
|
"db:5432",
|
||
|
"cache:6379",
|
||
|
"pgweb:8081",
|
||
|
"commander:8080"
|
||
|
],
|
||
|
"portsAttributes": {
|
||
|
"8000": {
|
||
|
"label": "Django Application"
|
||
|
},
|
||
|
"db:5432": {
|
||
|
"label": "PostgreSQL DB Instance"
|
||
|
},
|
||
|
"cache:6379": {
|
||
|
"label": "Redis Cache Instance"
|
||
|
},
|
||
|
"pgweb:8081": {
|
||
|
"label": "pgWeb"
|
||
|
},
|
||
|
"commander:8080": {
|
||
|
"label": "Redis Commander"
|
||
|
}
|
||
|
}
|
||
|
}
|