File: devcontainer.json

package info (click to toggle)
kamailio 6.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,432 kB
  • sloc: ansic: 859,295; xml: 203,409; makefile: 9,687; sh: 9,043; sql: 8,571; yacc: 4,121; python: 3,086; perl: 2,955; java: 449; cpp: 289; javascript: 270; php: 258; ruby: 248; awk: 27
file content (40 lines) | stat: -rw-r--r-- 1,180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  /* 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": "Debian",
  "build": {
    "cacheFrom": "ghcr.io/kamailio/kamailio-6.0-devcontainer",
    "context": "../pkg/kamailio/deb",
    "dockerfile": "Dockerfile"
  },

  // Features to add to the dev container. More info: https://containers.dev/features.
  "features": {
    "ghcr.io/wxw-matt/devcontainer-features/command_runner:0": {},
    "ghcr.io/devcontainers/features/github-cli:1": {}
  },

  // Use 'forwardPorts' to make a list of ports inside the container available locally.
  "forwardPorts": [
    5060
  ],

  // Configure tool-specific properties.
  "customizations": {
    "vscode": {
      "settings": {},
      "extensions": [
        "ms-vscode.cpptools-extension-pack",
        "GitHub.vscode-github-actions",
        "eamodio.gitlens",
        "xaver.clang-format",
        "cheshirekow.cmake-format",
        "brobeson.vscode-cmake-lint"
      ]
    }
  },

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