-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
52 lines (51 loc) · 1.23 KB
/
docker-compose.yml
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
version: "3"
services:
test-ruby2.7:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.7
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=Gemfile
test-ruby2.6:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.6
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=Gemfile
test-ruby2.5:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.5
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=Gemfile
test-ruby2.4:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.4
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=Gemfile
test-ruby2.3:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.3
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=Gemfile
test-ruby2.2:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.2
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=gemfiles/ruby_2.2.gemfile
test-ruby2.1:
build:
context: .
dockerfile: dockerfiles/Dockerfile-ruby2.1
command: tail -f /dev/null
environment:
- BUNDLE_GEMFILE=gemfiles/ruby_2.1.gemfile