File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ sudo : required
2
+
3
+ services :
4
+ - docker
5
+
6
+ env :
7
+ global :
8
+ - DOCKER_COMPOSE_VERSION=1.11.2
9
+
10
+ before_install :
11
+ - sudo rm /usr/local/bin/docker-compose
12
+ - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
13
+ - chmod +x docker-compose
14
+ - sudo mv docker-compose /usr/local/bin/
15
+
16
+ before_script :
17
+ - docker-compose up --build -d
18
+
19
+ script :
20
+ - docker-compose run users-service python manage.py test
21
+
22
+ after_script :
23
+ - docker-compose down
Original file line number Diff line number Diff line change 1
1
# FLASK MICROSERVICES
2
2
3
+ [ ![ Build Status] ( https://travis-ci.org/repodevs/flask-microservices-main.svg?branch=master )] ( https://travis-ci.org/repodevs/flask-microservices-main )
4
+
3
5
This project is based on [ testdriven.io] ( http://testdriven.io/ ) Microservices with Docker, Flask and React
4
6
5
7
### Structure
You can’t perform that action at this time.
0 commit comments