forked from CloudOpting/cloudopting-crane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.yml
53 lines (53 loc) · 1.28 KB
/
development.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
commander:
extends:
file: ./commander/compose.yml
service: commander
container_name: co_commander
environment:
- DEBUG=true
- REDIS=true
ports:
- "8888:8888"
volumes:
- ./commander/commander-data-tests/r10k/git:/root/.r10k/git
- ./commander/commander-data-tests/var/crane:/var/crane/
# Override application copied with the actual folder mounted as volume.
# Allows real time changes and log monitoring from editor
- ./commander/app:/usr/src/commander
links:
- redis
- registry:coregistry
- engine:coengine
- emulatedhost
# Uncomment this to run manually
# command: tail -f /dev/null
registry:
extends:
file: ./registry/compose.yml
service: registry
container_name: co_registry
ports:
- 5000:5000
volumes:
- ./registry/registry-data-tests:/var/lib/registry
engine:
extends:
file: ./engine/compose.yml
service: engine
container_name: co_engine
links:
- registry:coregistry
redis:
image: redis:3
container_name: co_redis
ports:
- 6379:6379
emulatedhost:
extends:
file: ./tests/emulatedhost/compose.yml
service: emulatedhost
container_name: co_emulatedhost
links:
- registry:coregistry
# Uncomment this to run manually
# command: tail -f /dev/null