-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (49 loc) · 779 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
56 lines (49 loc) · 779 Bytes
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
dev:
build: .
volumes:
- ./:/cinder
working_dir: /cinder
robot:
build: robot/
volumes:
- ./:/cinder/
working_dir: /cinder/robot
links:
- server
linter:
build: linter/
volumes:
- ./:/cinder/
working_dir: /cinder/
docs:
build: docs/
volumes:
- ./:/cinder/
working_dir: /cinder/docs
environment:
- PYTHONPATH=/cinder/
client:
build: .
volumes:
- ./:/cinder
working_dir: /cinder/example/
links:
- redis
- server
environment:
- PYTHONPATH=/cinder/
command: python example.py
server:
build: example/server
volumes:
- ./example/server:/server
working_dir: /server
ports:
- "8000:8000"
links:
- db
command: bash entrypoint.sh
redis:
image: redis
db:
image: postgres