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 5d5a451 commit 783ef58Copy full SHA for 783ef58
.circleci/config.yml
@@ -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
17
+ name: Logging Docker and Application information
18
19
20
+ docker -v
21
+ docker-compose -v
22
+ ls -l
23
24
+ name: Testing the Docker installation
25
+ command: docker container run hello-world
0 commit comments