forked from anycable/anycable-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdip.yml
42 lines (35 loc) · 784 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
version: '4'
compose:
files:
- .dockerdev/docker-compose.yml
project_name: anycable-rails
interaction:
bash:
description: Open a Bash shell in app's container
service: app
command: /bin/bash
dev:
service: app
command: exit
subcommands:
console:
description: Open a gem console
command: ./bin/console
clean:
description: Clean dependencies
command: rm -rf Gemfile.lock
bundle:
description: Run Bundler commands
service: app
command: bundle
rspec:
description: Run RSpec commands
service: app
command: bundle exec rspec
rubocop:
description: Run Rubocop commands
service: app
command: bundle exec rubocop
provision:
- dip dev clean
- dip bundle install