-
Notifications
You must be signed in to change notification settings - Fork 24
/
dip.yml
43 lines (35 loc) · 850 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
version: '7'
compose:
files:
- docker-compose.yml
interaction:
bash:
description: Open the Bash shell in app's container
service: ruby
command: /bin/bash
pry:
description: Open Pry console
service: ruby
command: ./bin/console
bundle:
description: Run Bundler commands
service: ruby
command: bundle
appraisal:
description: Run Appraisal commands
service: ruby
command: bundle exec ./bin/appraisal
rspec:
description: Run Rspec commands
service: ruby
command: bundle exec rspec
standardrb:
description: Run Standard linter
service: ruby
command: bundle exec standardrb
provision:
- cp -f lefthook-local.dip_example.yml lefthook-local.yml
- dip compose down --volumes
- rm -f Gemfile.lock gemfiles/*
- dip bundle install
- dip appraisal install