forked from koding/koding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
54 lines (45 loc) · 1.03 KB
/
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
51
52
53
54
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
- countly
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:3.2.8
command: --nojournal --noprealloc --smallfiles
postgres:
image: koding/postgres
countly:
image: countly/countly-server:16.06
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis