Files
frontend/.devcontainer/devcontainer.json
T
TakahashiNguyen 96584c5494
Release package / release (push) Has been cancelled
fix: add connection to backend (#34)
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Reviewed-on: #34
2026-04-19 02:22:46 +00:00

32 lines
1018 B
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/alpine
{
"name": "Alpine",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.22",
"features": {
"ghcr.io/muhmdraouf/devcontainers-features/alpine-apk:0": {
"packages": "pnpm",
"upgradePackages": true
}
},
"customizations": {
"vscode": {
"extensions": ["esbenp.prettier-vscode"]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000]
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}