-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (52 loc) · 1.25 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
version: '3.8'
services:
backend:
image: backend-image
build:
context: .
dockerfile: Dockerfile
ports:
- "8888:8888"
stop_signal: SIGINT
command: ["python", "backend.py"]
depends_on:
- mongo
mongo:
image: mongo:4.4.6
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
depends_on:
- mongo
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
test:
image: test-image
build:
context: ./tests
dockerfile: Dockerfile
command: sh -c "sleep 5 && behave --junit --junit-directory /root/_output/reports"
depends_on:
- backend
- mongo
volumes:
- ./tests/_output:/root/_output
unit-test:
image: unit-test-image
build:
context: .
dockerfile: Dockerfile
command: sh -c "sleep 5 && pytest --junitxml=/root/_output/reports/junit-crud.xml --color=yes /root/endpoints_tests"
depends_on:
- backend
- mongo
volumes:
- ./tests/_output:/root/_output