Skip to content

Commit

Permalink
further devcontainer niceities
Browse files Browse the repository at this point in the history
  • Loading branch information
GingerGeek committed Apr 2, 2024
1 parent 0da1f5b commit c4a8369
Showing 1 changed file with 22 additions and 16 deletions.
38 changes: 22 additions & 16 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "OKD Website Devcontainer",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/javascript-node:20",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
}
},
"name": "OKD Website Devcontainer",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/javascript-node:20",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
}
},

"updateContentCommand": "npm install",
"postAttachCommand": "npm start",

"updateContentCommand": "npm install",
"postAttachCommand": "npm start",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [3000]
"portsAttributes": {
"3000": {
"label": "Application",
"onAutoForward": "openPreview"
}
}

// Configure tool-specific properties.
// "customizations": {},
// Configure tool-specific properties.
// "customizations": {},

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

0 comments on commit c4a8369

Please sign in to comment.