Skip to content

Commit

Permalink
Added port forwarding and extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
acbgbca committed Sep 14, 2024
1 parent fea2de4 commit 36e542a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,25 @@
},
"containerEnv": {
"KUBECONFIG": "/k3s/config/k3s.yaml"
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
"forwardPorts": [ "chromium:3000" ],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",

// Configure tool-specific properties.
// "customizations": {},
"customizations": {
"vscode": {
"extensions": [
"mhutchie.git-graph",
"github.vscode-github-actions",
"ms-kubernetes-tools.vscode-kubernetes-tools",
"redhat.vscode-yaml"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down

0 comments on commit 36e542a

Please sign in to comment.