forked from exceptionless/Exceptionless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.6x.yml
73 lines (66 loc) · 1.55 KB
/
docker-compose.6x.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
version: '3.4'
services:
api:
depends_on:
- elasticsearch
image: exceptionless/api-ci:latest
environment:
AppMode: Development
ConnectionStrings__Elasticsearch: http://elasticsearch:9200
ConnectionStrings__Redis: redis,abortConnect=false
RunJobsInProcess: 'false'
StorageFolder: /app/storage
ports:
- 5000:80
volumes:
- appdata:/app/storage
jobs:
depends_on:
- api
image: exceptionless/job-ci:latest
command: run-all
environment:
AppMode: Development
ConnectionStrings__Elasticsearch: http://elasticsearch:9200
ConnectionStrings__Redis: redis,abortConnect=false
StorageFolder: /app/storage
volumes:
- appdata:/app/storage
ui:
image: exceptionless/ui-ci:latest
environment:
AppMode: Development
BaseUrl: http://ex-api.localtest.me:5000
ports:
- 5100:80
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.5.0
environment:
bootstrap.memory_lock: 'true'
discovery.type: single-node
ES_JAVA_OPTS: '-Xms512m -Xmx512m'
xpack.security.enabled: 'false'
ports:
- 9200:9200
- 9300:9300
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata:/usr/share/elasticsearch/data
kibana:
depends_on:
- elasticsearch
image: docker.elastic.co/kibana/kibana:6.5.0
ports:
- 5601:5601
redis:
image: redis:alpine
ports:
- 6379:6379
volumes:
esdata:
driver: local
appdata:
driver: local