-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.infrastructure.yml
More file actions
106 lines (96 loc) · 2.25 KB
/
docker-compose.infrastructure.yml
File metadata and controls
106 lines (96 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version: '3.4'
services:
consul:
image: consul:latest
command: consul agent -dev -log-level=warn -ui -client=0.0.0.0
hostname: consul
container_name: consul
networks:
- joker-network
ports:
- "8500:8500"
rabbitmq:
image: rabbitmq:3-management-alpine
ports:
- "5672:5672"
- "15672:15672"
networks:
- joker-network
postgres:
image: postgres
container_name: postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
PGDATA: /data/postgres
volumes:
- ./data/volumes/postgres:/data/postgres
ports:
- "5432:5432"
restart: unless-stopped
networks:
- joker-network
nosqldata:
image: mongo
container_name: "mongo"
ports:
- "27017:27017"
volumes:
- ./data/volumes/mongo:/data/db
networks:
- joker-network
couchbase:
image: couchbase
container_name: "couchbase"
ports:
- "8091:8091"
- "8093:8093"
- "11210:11210"
networks:
- joker-network
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "9411:9411"
networks:
- joker-network
elasticsearch01:
container_name: elasticsearch01
environment:
- http.host=0.0.0.0
- transport.host=127.0.0.1
- xpack.security.enabled=false
- "ELASTIC_USERNAME=elastic"
- "ELASTIC_PASSWORD=secret!"
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.1
volumes:
- esdata01:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- joker-network
kibana:
image: docker.elastic.co/kibana/kibana:7.0.1
container_name: kibana
environment:
- "ELASTICSEARCH_HOSTS=http://elasticsearch01:9200"
- "ELASTICSEARCH_USERNAME=elastic"
- "ELASTICSEARCH_PASSWORD=secret!"
depends_on:
- elasticsearch01
ports:
- "5601:5601"
networks:
- joker-network
volumes:
esdata01:
driver: local
networks:
joker-network:
external: true