-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.tmp
More file actions
98 lines (89 loc) · 2.07 KB
/
docker-compose.tmp
File metadata and controls
98 lines (89 loc) · 2.07 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: '3'
volumes:
mongodb_data:
driver: local
data-volume:
services:
dispatcher:
image: nginx:latest
container_name: dispatcher
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./log:/var/log/nginx
- ./certs:/etc/ssl
- data-volume:/repository
ports:
- 8082:8082
- 443:443
depends_on:
- mano
database:
image: mongo:latest
container_name: database
environment:
- MONGO_INITDB_DATABASE=experimentsdb
- MONGODB_DATABASE=PlatformsDB
- MONGODB_DATABASE=images
- MONGODB_DATABASE=onboarded
#- MONGO_INITDB_ROOT_USERNAME=5genesis
#- MONGO_INITDB_ROOT_PASSWORD=5genesisPASS
volumes:
#- ./database/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
- mongodb_data:/data/db
ports:
- '27017-27019:27017-27019'
distributor:
build: ./distributor
image: distributor
container_name: distributor
env_file:
- ./distributor/config.env
command: python distributor.py
volumes:
- "./distributor:/distributor"
ports:
- '5100:5100'
restart: always
mano:
build: ./mano
image: mano
container_name: mano
command: python mano.py
volumes:
- "./mano:/mano"
- data-volume:/repository
ports:
- '5101:5101'
restart: always
swagger:
image: 'swaggerapi/swagger-ui:v3.25.0'
container_name: swagger
environment:
- SWAGGER_JSON=/my_swagger/swagger.json
ports:
- '5002:8080'
volumes:
- './swagger:/my_swagger'
depends_on:
- mano
auth:
build: ./auth
image: auth
container_name: auth
command: python auth.py
volumes:
- ./auth/auth.db:/auth/auth.db
ports:
- '2000:2000'
restart: always
robottest:
build: ./robottest
container_name: robottest
env_file:
- ./robottest/config/environment.rc
entrypoint: ["sh", "-c", "sleep infinity"]
volumes:
- './robottest/testsuite:/robotTesting/testsuite'
- './robottest/config:/robotTesting/config'
ports:
- '8200:80'