-
Notifications
You must be signed in to change notification settings - Fork 174
/
docker-compose.yml
56 lines (51 loc) · 1.26 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
version: '3.6'
services:
license_finder:
build:
dockerfile: dockerfiles/Dockerfile.audit
context: .
volumes:
- ./:/scan
ruby-maze-runner:
build:
context: .
dockerfile: dockerfiles/Dockerfile.ruby-maze-runner
target: ruby-maze-runner
environment:
NETWORK_NAME: "${BUILDKITE_JOB_ID:-ruby-maze-runner}-${RUBY_TEST_VERSION:-local}"
BUILDKITE_JOB_ID:
RAILS_VERSION:
RACK_VERSION:
SIDEKIQ_VERSION:
QUE_VERSION:
RUBY_TEST_VERSION:
VERBOSE:
DEBUG:
networks:
default:
aliases:
- maze-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ruby-unit-tests:
build:
context: .
dockerfile: dockerfiles/Dockerfile.ruby-unit-tests
args:
- RUBY_TEST_VERSION
- GEMSETS=${GEMSETS:-test}
- BUNDLE_VERSION=${BUNDLE_VERSION:-2.2.0}
environment:
COVERALLS_REPO_TOKEN:
GEMSETS:
CI:
jruby-unit-tests:
build:
context: .
dockerfile: dockerfiles/Dockerfile.jruby-unit-tests
args:
- GEMSETS=${GEMSETS:-test}
- BUNDLE_VERSION=${BUNDLE_VERSION:-2.2.0}
networks:
default:
name: ${BUILDKITE_JOB_ID:-ruby-maze-runner}-${RUBY_TEST_VERSION:-local}