File size: 1,003 Bytes
15fec87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
{
"name": "FastAPI Django + RPA GUI Environment",
"dockerComposeFile": "docker-compose-gui.yml",
"service": "app-gui",
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"enableNonRootDocker": "true"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "18"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.11"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-next",
"ms-playwright.playwright"
]
}
},
"forwardPorts": [
7860, // Gradio
6080, // noVNC
5900 // VNC
],
"postCreateCommand": "bash .devcontainer/post-create-gui.sh",
"remoteUser": "vscode",
"mounts": [
"source=dind-var-lib-docker,target=/var/lib/docker,type=volume"
]
}
|