-
Notifications
You must be signed in to change notification settings - Fork 2
/
dip.yml
46 lines (36 loc) · 776 Bytes
/
dip.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
version: '2'
environment:
BUNDLE_GEMFILE: /app/Gemfile
compose:
files:
- docker-compose.yml
interaction:
bash:
service: app
compose_run_options: [no-deps]
app:
service: app
subcommands:
console:
command: ./bin/console
clean:
command: rm -rf Gemfile.lock gemfiles/*.gemfile.*
bundle:
service: app
command: bundle
compose_run_options: [no-deps]
appraisal:
service: app
command: bundle exec appraisal
compose_run_options: [no-deps]
rspec:
service: app
command: bundle exec appraisal bundle exec rspec
rubocop:
service: app
command: bundle exec rubocop
compose_run_options: [no-deps]
provision:
- dip app clean
- dip bundle install
- dip appraisal install