You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
579 B
21 lines
579 B
// https://aka.ms/devcontainer.json
|
|
{
|
|
"name": "Docker Devcontainer",
|
|
"image": "mcr.microsoft.com/vscode/devcontainers/base:0-ubuntu-22.04",
|
|
"postCreateCommand": "docker buildx create --use",
|
|
|
|
"forwardPorts": [],
|
|
"remoteUser": "vscode",
|
|
|
|
"features": {
|
|
"homebrew": "latest",
|
|
// you can view all of the features here: https://github.com/devcontainers/features/tree/main/src
|
|
"ghcr.io/devcontainers/features/sshd:1": {
|
|
"version": "latest"
|
|
},
|
|
"ghcr.io/devcontainers/features/docker-in-docker:1": {
|
|
"version": "latest",
|
|
"dockerDashComposeVersion":"v2"
|
|
}
|
|
}
|
|
}
|