microsoft/mu_tiano_platforms

Public

mirrored fromhttps://github.com/microsoft/mu_tiano_platformsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ace7fc035221a41dc04ae7b40887cd71ef9da7c6

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.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