-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlanguages.json.example
66 lines (66 loc) · 1.26 KB
/
languages.json.example
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
{
".rb": {
"image": "bitrun/ruby:2.2",
"command": "ruby %s"
},
".py": {
"image": "python:2.7",
"command": "python %s"
},
".js": {
"image": "bitrun/node:4.1",
"command": "node %s"
},
".go": {
"image": "golang:1.5",
"command": "go run %s"
},
".php": {
"image": "php:5.6",
"command": "php %s"
},
".coffee": {
"image": "bitrun/node:4.1",
"command": "coffee %s"
},
".exs": {
"image": "trenpixster/elixir:latest",
"command": "elixir %s"
},
".sh": {
"image": "debian:jessie",
"command": "bash %s"
},
".rs": {
"image": "jimmycuadra/rust:latest",
"command": "rustc -o main %s && ./main"
},
".c": {
"image": "gcc:latest",
"command": "cc -o main %s && ./main"
},
".lol": {
"image": "bitrun/lci:0.10",
"command": "lci ./%s"
},
".arnie": {
"image": "sosedoff/arnoldc:latest",
"command": "java -jar /arnoldc.jar %s && java main"
},
".bf": {
"image": "sosedoff/brainfuck:latest",
"command": "brainfuck %s"
},
".swift": {
"image": "swiftdocker/swift:latest",
"command": "swift %s"
},
".dart": {
"image": "google/dart:latest",
"command": "dart %s"
},
".lua": {
"image": "bitrun/lua:latest",
"command": "lua %s"
}
}