Files
slot/.devcontainer/ui/devcontainer.json

23 lines
632 B
JSON
Raw Normal View History

2025-06-02 15:03:04 +02:00
{
2025-10-31 23:12:35 +01:00
"name": "slot-ui",
2025-06-02 15:03:04 +02:00
"build": {
"dockerfile": "Dockerfile",
2025-10-31 23:42:12 +01:00
"options": [
"--secret", "id=nexus_login,src=/tmp/nexus_login",
"--secret", "id=nexus_pwd,src=/tmp/nexus_pwd"
]
2025-06-03 22:32:20 +02:00
},
2025-06-04 23:26:12 +02:00
"containerEnv": {
"GIT_REPO_URL": "https://scm.vilanet.fr/kriss/slot"
},
2025-06-03 22:32:20 +02:00
"customizations": {
2025-06-06 19:25:34 +02:00
"jetbrains": {
"backend": "WebStorm"
}
2025-06-03 22:32:20 +02:00
},
2025-06-04 23:26:12 +02:00
"forwardPorts": [5173],
2025-06-03 22:56:48 +02:00
"workspaceFolder": "/workspace",
2025-06-06 08:34:40 +02:00
"//": "workspaceMount: source=jb_devcontainer_sources_f31d2e11122d7a0f1e78fb3337cc2916,target=/workspace,type=volume",
"//": "postCreateCommand: if [ ! -d .git ]; then git clone $GIT_REPO_URL .; fi"
2025-06-02 15:03:04 +02:00
}