-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
56 lines (56 loc) · 1.07 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
55
56
web:
build: cloudpebble/
ports:
- "80:80"
volumes:
- "./cloudpebble/:/code"
links:
- redis
- postgres
- s3
- qemu
- ycmd
environment:
- DEBUG="yes"
- RUN_WEB="yes"
- AWS_ENABLED="yes"
- PORT=80
- AWS_S3_FAKE_S3=10.0.2.15:8003
- MEDIA_URL=http://10.0.2.15:8003/builds.cloudpebble.net/
- QEMU_URLS=http://10.0.2.15:8001/
- YCM_URLS=http://10.0.2.15:8002/
- PUBLIC_URL=http://10.0.2.15/
celery:
build: cloudpebble/
volumes:
- "./cloudpebble/:/code"
links:
- redis
- postgres
- s3
environment:
- DEBUG="yes"
- RUN_CELERY="yes"
- AWS_ENABLED=yes
- EXPORT_ROOT=http://10.0.2.15:8003/export.cloudpebble.net/
- AWS_S3_FAKE_S3=10.0.2.15:8003
qemu:
build: cloudpebble-qemu-controller/
volumes:
- "./cloudpebble-qemu-controller/:/code"
ports:
- "8001:80"
ycmd:
build: cloudpebble-ycmd-proxy/
volumes:
- "./cloudpebble-ycmd-proxy/:/code"
ports:
- "8002:80"
redis:
image: redis
postgres:
image: postgres
s3:
image: lphoward/fake-s3
ports:
- "8003:4569"