-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
95 lines (95 loc) · 2.2 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
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
services:
# MRI
datadog-ci-2.7:
image: ghcr.io/datadog/images-rb/engines/ruby:2.7
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-2.7
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-2.7:/usr/local/bundle
datadog-ci-3.0:
image: ghcr.io/datadog/images-rb/engines/ruby:3.0
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-3.0
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-3.0:/usr/local/bundle
datadog-ci-3.1:
image: ghcr.io/datadog/images-rb/engines/ruby:3.1
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-3.1
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-3.1:/usr/local/bundle
datadog-ci-3.2:
image: ghcr.io/datadog/images-rb/engines/ruby:3.2
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-3.2
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-3.2:/usr/local/bundle
datadog-ci-3.3:
image: ghcr.io/datadog/images-rb/engines/ruby:3.3
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-3.3
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-3.3:/usr/local/bundle
datadog-ci-3.4:
image: ghcr.io/datadog/images-rb/engines/ruby:3.4
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-3.4
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-3.4:/usr/local/bundle
# ADD NEW RUBIES HERE
datadog-ci-jruby-9.4:
image: ghcr.io/datadog/images-rb/engines/jruby:9.4
working_dir: /app
command: /bin/bash
env_file: ./.env
environment:
BUNDLE_GEMFILE: /app/Gemfile-jruby-9.4
stdin_open: true
tty: true
volumes:
- .:/app
- bundle-jruby-9.4:/usr/local/bundle
volumes:
bundle-2.7:
bundle-3.0:
bundle-3.1:
bundle-3.2:
bundle-3.3:
bundle-3.4:
bundle-jruby-9.4: # ADD NEW RUBIES HERE