2025-08-07 09:58:30 +00:00
|
|
|
// For format details, see https://containers.dev/implementors/json_reference/.
|
|
|
|
|
// For config options, see the README at: https://github.com/devcontainers/templates/tree/main/src/ruby
|
|
|
|
|
{
|
|
|
|
|
"name": "Zammad (default)",
|
|
|
|
|
"dockerComposeFile": "compose.yaml",
|
|
|
|
|
"service": "devcontainer",
|
|
|
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
|
|
|
"features": {
|
|
|
|
|
"../features/zammad-deps": {},
|
|
|
|
|
"../features/add-bin-path": {
|
|
|
|
|
"addBinPath": "/workspaces/${localWorkspaceFolderBasename}/bin"
|
2025-10-29 15:45:35 +00:00
|
|
|
}
|
2025-08-07 09:58:30 +00:00
|
|
|
},
|
2025-09-05 06:44:24 +00:00
|
|
|
"mounts": [
|
|
|
|
|
{
|
|
|
|
|
// Avoid conflicts with host-installed node_modules with a different platform/architecture.
|
|
|
|
|
"source": "node-modules",
|
|
|
|
|
"target": "/workspaces/${localWorkspaceFolderBasename}/node_modules",
|
|
|
|
|
"type": "volume"
|
2026-05-19 12:31:41 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"source": "pnpm-store",
|
|
|
|
|
"target": "/workspaces/${localWorkspaceFolderBasename}/.pnpm-store",
|
|
|
|
|
"type": "volume"
|
2025-09-05 06:44:24 +00:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"containerEnv": {},
|
2026-05-19 12:31:41 +00:00
|
|
|
"forwardPorts": [
|
|
|
|
|
3000,
|
|
|
|
|
3001,
|
|
|
|
|
3036,
|
|
|
|
|
6042
|
|
|
|
|
],
|
2026-03-09 10:31:04 +00:00
|
|
|
"postCreateCommand": "/workspaces/${localWorkspaceFolderBasename}/.devcontainer/post_create.sh",
|
|
|
|
|
"postStartCommand": "git config --global --add safe.directory /workspaces/${localWorkspaceFolderBasename}"
|
2025-08-07 09:58:30 +00:00
|
|
|
}
|