0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-02 19:43:00 +00:00
terraform-provider-proxmox/.devcontainer/devcontainer.json
renovate[bot] 27fe17008f
chore(deps): update image mcr.microsoft.com/devcontainers/go (1.23 → 1.24) (#1835)
| datasource | package                            | from | to   |
| ---------- | ---------------------------------- | ---- | ---- |
| docker     | mcr.microsoft.com/devcontainers/go | 1.23 | 1.24 |

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-20 02:22:28 +00:00

30 lines
1.0 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/universal
{
"name": "Default Linux Universal",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/go:1.24-bullseye",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/terraform:1": {
"version": "1.10.3"
}
},
"postAttachCommand": ["bash", "./.devcontainer/post-attach.sh"],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "make build"
}