microsoft/mu_tiano_platforms
Publicmirrored fromhttps://github.com/microsoft/mu_tiano_platformsAvailable
.devcontainer/devcontainer.json
17lines · modecode
| 1 | { |
| 2 | "image": "ghcr.io/microsoft/mu_devops/ubuntu-24-dev:latest", |
| 3 | "postCreateCommand": "git config --global --add safe.directory '*' && pip install --upgrade -r pip-requirements.txt", |
| 4 | "forwardPorts": [ // For general use. EXDI, TCP Serial, etc. |
| 5 | 5005, |
| 6 | 5006, |
| 7 | 5007, |
| 8 | 5008 |
| 9 | ], |
| 10 | "privileged": true, |
| 11 | "containerEnv": { |
| 12 | "DISPLAY": ":0" |
| 13 | }, |
| 14 | "mounts": [ |
| 15 | "source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=uncached" |
| 16 | ] |
| 17 | } |
| 18 | |