forked from Enovale/cloudpebble-composed
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (60 loc) · 1.37 KB
/
docker-compose.yml
File metadata and controls
60 lines (60 loc) · 1.37 KB
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
57
58
59
60
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
# On MAC - go to your settings -> Network -> copy IP address
# NOTE: you can NOT use 127.0.0.1 or 0.0.0.0 because it will be the machine's IP address, not your PC's address
- AWS_S3_FAKE_S3=192.168.76.5:8003
- MEDIA_URL=http://192.168.76.5:8003/builds.cloudpebble.net/
- QEMU_URLS=http://192.168.76.5:8001/
- YCM_URLS=http://192.168.76.5:8002/
- PUBLIC_URL=http://192.168.76.5/
- LIBPEBBLE_PROXY=wss://cloudpebble-ws.herokuapp.com/tool
- PEBBLE_AUTH_URL=https://auth.rebble.io
celery:
build: cloudpebble/
volumes:
- "./cloudpebble/:/code"
links:
- redis
- postgres
- s3
environment:
- DEBUG="yes"
- RUN_CELERY="yes"
- AWS_ENABLED=yes
- EXPORT_ROOT=http://192.168.76.5/export.cloudpebble.net/
- AWS_S3_FAKE_S3=192.168.76.5: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: kuracloud/fake-s3
ports:
- "8003:4569"