-
Notifications
You must be signed in to change notification settings - Fork 1
/
dxapp.json
108 lines (108 loc) · 3.27 KB
/
dxapp.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cwic",
"title": "CWIC - cloud workstation in container",
"summary": "Develop and scale in a portable interactive cloud environment",
"dxapi": "1.0.0",
"version": "0.2.0",
"billTo": "org-dnanexus_apps",
"openSource": true,
"inputSpec": [
{
"name": "image",
"label": "Docker image name",
"class": "string",
"optional": true,
"help": "Docker image name to be loaded. If it is not provided, and no credential file is provided, a default dnanexus/cwic-base will be used. See Readme for details"
},
{
"name": "cmd",
"label": "Command",
"class": "string",
"optional": true,
"help": "A command to be executed. If it is provided, a non-interactive mode of the cwic will be loaded to run the command and exit"
},
{
"name": "credentials",
"label": "Credentials",
"class": "file",
"optional": true,
"patterns": [
"*"
],
"help": "A file storing an access token and user login information to a Docker registry where a Docker image holding the user's cwic instance will be stored"
},
{
"name": "project_mount_options",
"label": "Project mount options",
"class": "string",
"optional": true,
"help": "Mount options for project, set to '-w' or '-readWrite' in order to mount project with write access (experimental) otherwise read only mode will be used",
"default": "-readOnly",
"choices": [
"-readOnly",
"-w",
"-readWrite"
]
}
],
"outputSpec": [],
"ignoreReuse": true,
"runSpec": {
"interpreter": "bash",
"release": "16.04",
"distribution": "Ubuntu",
"file": "src/code.sh",
"version": "1"
},
"access": {
"network": [
"*"
],
"project": "CONTRIBUTE",
"allProjects": "VIEW"
},
"details": {
"whatsNew": "* 0.2.0: Removed from aws:cn-north-1 region\n* 0.1.0: Jobs started from cwic are started in detached mode by default. Updated version of dx-toolkit to v0.305.0. Upgraded dxfuse to v0.23.1. Updated base image to 0.0.4. \n* 0.0.6: Add dx-find-cwic-jobs and dx-cwic-sub scripts; mount project in read only mode by default; set HOME to /home/cwic; upgrade dxfuse to v0.22.2\n* 0.0.5: Upgrade dxfuse to v0.22.1\n* 0.0.4: Load cwic when opening a tmux window; Use dnanexus/cwic-base:0.0.1 as default image; Fix prompt; Bug fixes\n* 0.0.3: Bug fixes\n* 0.0.2: Pass DNAnexus user token in credentials and use it in Docker container\n* 0.0.1: Releasing an alpha version\n"
},
"categories": [
"Development",
"Data Exploration"
],
"regionalOptions": {
"azure:westus": {
"systemRequirements": {
"*": {
"instanceType": "azure:mem2_ssd1_x1"
}
}
},
"azure:westeurope": {
"systemRequirements": {
"*": {
"instanceType": "azure:mem2_ssd1_x1"
}
}
},
"aws:us-east-1": {
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x4"
}
}
},
"aws:eu-central-1": {
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x4"
}
}
},
"aws:ap-southeast-2": {
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x4"
}
}
}
}
}