Skip to content

Commit 783ef58

Browse files
committed
Add the CircleCI config
[refs #72c9afcb8e04]
1 parent 5d5a451 commit 783ef58

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.circleci/config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
jobs:
3+
build:
4+
docker:
5+
- image: docker:17.12.0-ce-git
6+
working_directory: /app
7+
steps:
8+
- checkout
9+
- setup_remote_docker
10+
- run:
11+
name: Installing dependencies
12+
command: |
13+
set -x
14+
apk add --no-cache --no-progress bash py-pip
15+
pip install --quiet docker-compose
16+
- run:
17+
name: Logging Docker and Application information
18+
command: |
19+
set -x
20+
docker -v
21+
docker-compose -v
22+
ls -l
23+
- run:
24+
name: Testing the Docker installation
25+
command: docker container run hello-world

0 commit comments

Comments
 (0)