Files
base/.devstar/devcontainer.json
2025-12-23 14:25:32 +08:00

25 lines
543 B
JSON

{
"name": "DevContainerExample",
"build": {
"dockerfile": "Dockerfile.ubuntu-latest"
},
"forwardPorts": [
"8080"
],
"initializeCommand": "echo \"initializeCommand\";",
"onCreateCommand": [
"echo \"onCreateCommand\";",
"echo \"onCreateCommand\";"
],
"postCreateCommand": [
"echo \"postCreateCommand\"",
"echo \"OK\""
],
"postAttachCommand": [
"echo \"postAttachCommand\"",
"echo \"OK\""
],
"runArgs": [
"-p 8888"
]
}