File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 6
6
steps :
7
7
- checkout
8
8
- run :
9
- name : Install docker-compose
10
- command : sudo pip install docker-compose
9
+ name : Install Docker Compose
10
+ command : |
11
+ set -x
12
+ curl -L https://github.com/docker/compose/releases/download/1.11.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
13
+ chmod +x /usr/local/bin/docker-compose
11
14
# - run:
12
15
# name: Run Rspec Tests
13
16
# command: bundle exec rspec
14
17
- run :
15
18
name : Run Docker Compose
16
- command : sudo docker-compose up -d
19
+ command : docker-compose up -d
17
20
- run :
18
21
name : Run Application Tests
19
- command : sudo docker-compose run dockerapp python test.py
22
+ command : docker-compose run dockerapp python test.py
20
23
workflows :
21
24
version : 2
22
25
test :
You can’t perform that action at this time.
0 commit comments