forked from koding/koding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
50 lines (42 loc) · 981 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
41
42
43
44
45
46
47
48
49
50
version: '2'
services:
backend:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: run backend
env_file: .env-docker-compose
volumes:
- .:/opt/koding
ports:
- 8090:8090
links:
- mongo
- postgres
- rabbitmq
- redis
client:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container is_ready
command: make -C client development
env_file: .env-docker-compose
volumes:
- .:/opt/koding
client-landing:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container is_ready
command: make -C client/landing dev
env_file: .env-docker-compose
volumes:
- .:/opt/koding
mongo:
image: mongo:2.4
command: --nojournal --noprealloc --smallfiles
postgres:
image: koding/postgres
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis