-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (38 loc) · 1021 Bytes
/
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
version: '3.7'
networks:
meriterra:
driver: bridge
services:
client:
image: python:2.7.18-slim-buster
networks:
- meriterra
volumes:
- .:/opt/client
working_dir: /opt/client
command: python run_client.py -s config/client.json
logging:
options:
max-size: 50m
dispatcher:
image: python:2.7.18-slim-buster
networks:
- meriterra
volumes:
- .:/opt/dispatcher
working_dir: /opt/dispatcher
command: python run_dispatcher.py -s config/dispatcher.json
logging:
options:
max-size: 50m
calculator:
image: python:2.7.18-slim-buster
networks:
- meriterra
volumes:
- .:/opt/calculator
working_dir: /opt/calculator
command: python run_calculator.py -s config/calculator.json
logging:
options:
max-size: 50m