aboutsummaryrefslogtreecommitdiff
path: root/test-scenarios/scenarios.json
blob: c6291e2545e2eb3efd0da82cded4b1d02384122c (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
    "install_additional_java": {
        "image": "ubuntu:focal",
        "features": {
            "java": {
                "version": "17",
                "additional_versions": "11,8"
            }
        }
    },
    "install_jupyterlab": {
        "image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
        "remoteUser": "vscode",
        "features": {
            "common": {
                "username": "vscode"
            },
            "python": {
                "install_jupyterlab": true,
                "configure_jupyterlab_allow_origin": "*"
            }
        }
    },
    "install_additional_node": {
        "image": "debian:11",
        "features": {
            "node": {
                "version": "latest",
                "additional_versions": "v17.9.1,v14.19.3"
            }
        }
    },
    "install_additional_python": {
        "image": "ubuntu:focal",
        "features": {
            "python": {
                "version": "3.10.5",
                "additional_versions": "3.8,3.9.13"
            }
        }
    },
    "install_additional_ruby": {
        "image": "ubuntu:focal",
        "features": {
            "ruby": {
                "version": "3.1.2",
                "additional_versions": "2.5,3.0.4"
            }
        }
    },
    "install_additional_dotnet": {
        "image": "ubuntu:focal",
        "features": {
            "dotnet": {
                "version": "6.0.301",
                "additional_versions": "5.0,3.1.420"
            }
        }
    }
}