-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (45 loc) · 928 Bytes
/
docker-compose.yml
File metadata and controls
55 lines (45 loc) · 928 Bytes
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
services:
python-runner:
build:
context: ./src/docker/python
image: python-runner
javascript-runner:
build:
context: ./src/docker/javascript
image: javascript-runner
c-runner:
build:
context: ./src/docker/c
image: c-runner
cpp-runner:
build:
context: ./src/docker/cpp
image: cpp-runner
java-runner:
build:
context: ./src/docker/java
image: java-runner
go-runner:
build:
context: ./src/docker/go
image: go-runner
php-runner:
build:
context: ./src/docker/php
image: php-runner
rust-runner:
build:
context: ./src/docker/rust
image: rust-runner
r-runner:
build:
context: ./src/docker/r
image: r-runner
elixir-runner:
build:
context: ./src/docker/elixir
image: elixir-runner
csharp-runner:
build:
context: ./src/docker/csharp
image: csharp-runner