Skip to content

Commit 62beafa

Browse files
committed
Switch to machine executor
Since we need privileged settings for the Docker container
1 parent b8af5d2 commit 62beafa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
version: 2
22
jobs:
33
build:
4-
docker:
5-
- image: gruntwork/bash-commons-circleci-tests
4+
# We need to run Docker Compose with privileged settings, which isn't supported by CircleCI's Docker executor, so
5+
# we have to use the machine executor instead.
6+
machine: true
67
steps:
78
- checkout
8-
- run: bats test
9+
- run: |
10+
cd test
11+
docker-compose up

0 commit comments

Comments
 (0)