We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8af5d2 commit 62beafaCopy full SHA for 62beafa
.circleci/config.yml
@@ -1,8 +1,11 @@
1
version: 2
2
jobs:
3
build:
4
- docker:
5
- - image: gruntwork/bash-commons-circleci-tests
+ # We need to run Docker Compose with privileged settings, which isn't supported by CircleCI's Docker executor, so
+ # we have to use the machine executor instead.
6
+ machine: true
7
steps:
8
- checkout
- - run: bats test
9
+ - run: |
10
+ cd test
11
+ docker-compose up
0 commit comments