We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e0793 commit 2a29275Copy full SHA for 2a29275
.travis.yml
@@ -1,8 +1,22 @@
1
+sudo: required
2
+
3
language: node_js
4
node_js:
5
- "6"
6
7
services:
8
- mongodb
9
+ - docker
10
11
+env:
12
+ DOCKER_COMPOSE_VERSION: 1.6.0
13
14
+before_install:
15
+ - sudo rm /usr/local/bin/docker-compose
16
+ - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
17
+ - chmod +x docker-compose
18
+ - sudo mv docker-compose /usr/local/bin
19
20
after_success:
21
- if [ "$TRAVIS_BRANCH" == "master" ]; then
22
docker build -t nikriek/projectsecure-client:latest --build-arg API_URL=$API_URL . ;
0 commit comments