forked from gyselroth/balloon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
57 lines (57 loc) · 1.6 KB
/
docker-compose-dev.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
57
mongodb:
image: mongo:3.6
clamav:
image: dinkel/clamavd:latest
libreoffice:
image: collabora/code
ports:
- "9980:9980"
links:
- balloon-dev
environment:
- domain=balloon-dev
elasticsearch:
image: gyselroth/balloon-elasticsearch:latest
postfix:
image: webuni/postfix
browserless:
image: browserless/chrome
balloon-dev-jobs:
image: gyselroth/balloon-development:latest
volumes:
- .:/srv/www/balloon
#entrypoint: php /srv/www/balloon/src/cgi-bin/cli.php jobs -vvvv -f
links:
- clamav
- mongodb
- elasticsearch
- postfix
- browserless
environment:
- BALLOON_MONGODB_URI=mongodb://mongodb:27017
- BALLOON_CLAMAV_URI=tcp://clamav:3310
- BALLOON_ELASTICSEARCH_URI=http://elasticsearch:9200
- BALLOON_WOPI_URL=https://balloon-dev
- BALLOON_SMTP_HOST=postfix
- BALLOON_URL=http://localhost:8080
- BALLOON_BURL_BROWSERLESS_URL=http://browserless:3000
balloon-dev:
image: gyselroth/balloon-development:latest
ports:
- "8081:443"
volumes:
- .:/srv/www/balloon
links:
- clamav
- mongodb
- elasticsearch
- postfix
- browserless
environment:
- BALLOON_MONGODB_URI=mongodb://mongodb:27017
- BALLOON_CLAMAV_URI=tcp://clamav:3310
- BALLOON_ELASTICSEARCH_URI=http://elasticsearch:9200
- BALLOON_WOPI_URL=https://balloon-dev
- BALLOON_SMTP_HOST=postfix
- BALLOON_URL=http://localhost:8080
- BALLOON_BURL_BROWSERLESS_URL=http://browserless:3000