-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
75 lines (66 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
version: '3'
services:
postgres:
image: postgres:9.5.5-alpine
ports:
- 5432:5432
environment:
POSTGRES_USER: zotonic
volumes:
- postgres-data:/var/lib/postgresql/data
- ./data:/data
working_dir: /data
elasticsearch:
image: elasticsearch:5.3.2-alpine
ports:
- 9200:9200
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
environment:
ES_JAVA_OPTS: "-Xms500m -Xmx500m"
kibana:
image: kibana:5.0
links:
- elasticsearch
ports:
- 5601:5601
zotonic:
image: driebit/ginger-dev:0.x
privileged: true
links:
- postgres
- elasticsearch
volumes:
- ./modules:/opt/zotonic/user/modules
- ./sites:/opt/zotonic/user/sites
- ./skel:/opt/zotonic/priv/skel/ginger
- ./scripts:/scripts
ports:
- 80:8000
- 443:8443
environment:
MAKE: "true"
HEART_DISABLE: "true"
LOGSTASH_HOST: "localhost"
LOGSTASH_PORT: 5514
networks:
default:
selenium:
node-tests:
image: driebit/node
command: test
links:
- selenium
environment:
SELENIUM_REMOTE_URL: http://selenium:4444/wd/hub
networks:
- selenium
selenium:
image: selenium/standalone-chrome:3.4.0
networks:
- selenium
networks:
selenium:
volumes:
postgres-data: {}
elasticsearch-data: {}