-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (37 loc) · 864 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (37 loc) · 864 Bytes
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
version: '3.7'
services:
rabbitmq:
image: rabbitmq:3-management
container_name: myrabbitmq
ports:
- "15672:15672"
- "5672:5672"
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
postgres:
image: postgres
container_name: mypostgres
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=postgres
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.1
container_name: myelastic
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana:6.6.1
container_name: mykibana
ports:
- "5601:5601"